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
,java.io.Serializable
,scala.Equals
,scala.Product
- Enclosing interface:
- CommandMessage
public static class CommandMessage.Oneway extends java.lang.Object implements CommandMessage, scala.Product, java.io.Serializable
Represents a oneway kind of message that carries command to other componentparam: command represents a command sent to other component param: replyTo represents the actor that will receive the command response
- See Also:
- Serialized Form
-
-
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
Constructors Constructor Description Oneway(ControlCommand command, akka.actor.typed.ActorRef<CommandResponse.OnewayResponse> replyTo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ControlCommand
command()
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 commands
-
-
-
Constructor Detail
-
Oneway
public Oneway(ControlCommand command, akka.actor.typed.ActorRef<CommandResponse.OnewayResponse> replyTo)
-
-
Method Detail
-
command
public ControlCommand command()
Description copied from interface:CommandMessage
Represents a command sent to other component- Specified by:
command
in interfaceCommandMessage
- Returns:
- (undocumented)
-
replyTo
public akka.actor.typed.ActorRef<CommandResponse.OnewayResponse> 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)
-
-