Record Class SessionLoader.WorkerContext
java.lang.Object
java.lang.Record
org.keycloak.models.sessions.infinispan.initializer.SessionLoader.WorkerContext
- Enclosing interface:
- SessionLoader<LOADER_CONTEXT extends SessionLoader.LoaderContext,
WORKER_CONTEXT extends SessionLoader.WorkerContext, WORKER_RESULT extends SessionLoader.WorkerResult>
Object, which is computed before each worker iteration and contains some data to be used by the corresponding worker iteration.
For example info about which segment/page should be loaded by current worker.
-
Constructor Summary
ConstructorDescriptionWorkerContext
(int segment) Creates an instance of aWorkerContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
segment()
Returns the value of thesegment
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
WorkerContext
public WorkerContext(int segment) Creates an instance of aWorkerContext
record class.- Parameters:
segment
- the value for thesegment
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
segment
public int segment()Returns the value of thesegment
record component.- Returns:
- the value of the
segment
record component
-