Package akka.javasdk.agent.autonomous
Record Class Notification.WorkerTaskReceived
- All Implemented Interfaces:
Notification,Notification.DelegationNotification
- Enclosing interface:
Notification
public static record Notification.WorkerTaskReceived(String subtaskId, String orchestratorComponentId, String orchestratorInstanceId)
extends Record
implements Notification.DelegationNotification
Worker side: this agent accepted a delegated subtask from the orchestrator.
-
Nested Class Summary
Nested classes/interfaces inherited from interface akka.javasdk.agent.autonomous.Notification
Notification.Activated, Notification.BacklogAccessGranted, Notification.BacklogAssigned, Notification.BacklogClosed, Notification.BacklogNotification, Notification.BacklogTaskClaimed, Notification.ContactAdded, Notification.ConversationCreated, Notification.ConversationEnded, Notification.ConversationJoined, Notification.ConversationNotification, Notification.ConversationParticipantReady, Notification.ConversationParticipantSetupFailed, Notification.ConversationTurnReceived, Notification.Deactivated, Notification.DelegationNotification, Notification.DelegationResolved, Notification.DelegationStarted, Notification.DependencyResolved, Notification.HandoffNotification, Notification.HandoffReceived, Notification.HandoffStarted, Notification.IterationCompleted, Notification.IterationFailed, Notification.IterationStarted, Notification.LifecycleNotification, Notification.MessageReceived, Notification.MessagingNotification, Notification.ParticipantTurnSubmitted, Notification.RepeatedIterationFailure, Notification.Resumed, Notification.Stopped, Notification.StruggleNotification, Notification.Suspended, Notification.TaskApproachingMaxIterations, Notification.TaskAssigned, Notification.TaskCancelled, Notification.TaskCompleted, Notification.TaskDependencyStuck, Notification.TaskDependencyWait, Notification.TaskFailed, Notification.TaskNotification, Notification.TaskResultRejected, Notification.TaskStarted, Notification.TaskStruggleDetected, Notification.TeamCreated, Notification.TeamDisbanded, Notification.TeamJoined, Notification.TeamMemberReady, Notification.TeamMemberSetupFailed, Notification.TeamMemberStopped, Notification.TeamNotification, Notification.WorkerTaskCompleted, Notification.WorkerTaskReceived -
Constructor Summary
ConstructorsConstructorDescriptionWorkerTaskReceived(String subtaskId, String orchestratorComponentId, String orchestratorInstanceId) Creates an instance of aWorkerTaskReceivedrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theorchestratorComponentIdrecord component.Returns the value of theorchestratorInstanceIdrecord component.Returns the value of thesubtaskIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
WorkerTaskReceived
public WorkerTaskReceived(String subtaskId, String orchestratorComponentId, String orchestratorInstanceId) Creates an instance of aWorkerTaskReceivedrecord class.- Parameters:
subtaskId- the value for thesubtaskIdrecord componentorchestratorComponentId- the value for theorchestratorComponentIdrecord componentorchestratorInstanceId- the value for theorchestratorInstanceIdrecord 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 withObjects::equals(Object,Object). -
subtaskId
Returns the value of thesubtaskIdrecord component.- Returns:
- the value of the
subtaskIdrecord component
-
orchestratorComponentId
Returns the value of theorchestratorComponentIdrecord component.- Returns:
- the value of the
orchestratorComponentIdrecord component
-
orchestratorInstanceId
Returns the value of theorchestratorInstanceIdrecord component.- Returns:
- the value of the
orchestratorInstanceIdrecord component
-