Package csw.command.client.messages
Class CommandMessage.Oneway
java.lang.Object
csw.command.client.messages.CommandMessage.Oneway
- All Implemented Interfaces:
CommandMessage
,CommandSerializationMarker.RemoteMsg
,ComponentMessage
,RunningMessage
,SupervisorLockMessage
,SupervisorMessage
,SupervisorRunningMessage
,TopLevelActorMessage
,CommandSerializable
,Serializable
,scala.Equals
,scala.Product
- Enclosing interface:
- CommandMessage
public static class CommandMessage.Oneway
extends Object
implements CommandMessage, scala.Product, Serializable
Represents a oneway kind of message that carries command to other component
param: command represents a command sent to other component param: replyTo represents the actor that will receive the command response
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface csw.command.client.messages.CommandMessage
CommandMessage.Oneway, CommandMessage.Oneway$, CommandMessage.Submit, CommandMessage.Submit$, CommandMessage.Validate, CommandMessage.Validate$
Nested classes/interfaces inherited from interface csw.command.client.messages.RunningMessage
RunningMessage.Lifecycle, RunningMessage.Lifecycle$
Nested classes/interfaces inherited from interface csw.command.client.messages.SupervisorLockMessage
SupervisorLockMessage.Lock, SupervisorLockMessage.Lock$, SupervisorLockMessage.Unlock, SupervisorLockMessage.Unlock$
-
Constructor Summary
ConstructorDescriptionOneway
(ControlCommand command, akka.actor.typed.ActorRef<CommandResponse.OnewayResponse> replyTo) -
Method Summary
Modifier and TypeMethodDescriptioncommand()
Represents a command sent to other componentakka.actor.typed.ActorRef<CommandResponse.OnewayResponse>
replyTo()
Represents the actor that will receive the Locked response for Submit, Oneway and Validate kind of commandsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface scala.Equals
canEqual, equals
Methods inherited from interface scala.Product
productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
-
Constructor Details
-
Oneway
public Oneway(ControlCommand command, akka.actor.typed.ActorRef<CommandResponse.OnewayResponse> replyTo)
-
-
Method Details
-
command
Description copied from interface:CommandMessage
Represents a command sent to other component- Specified by:
command
in interfaceCommandMessage
- Returns:
- (undocumented)
-
replyTo
Description copied from interface:CommandMessage
Represents the actor that will receive the Locked response for Submit, Oneway and Validate kind of commands- Specified by:
replyTo
in interfaceCommandMessage
- Returns:
- (undocumented)
-