Class Messages.AppendRemoteInteractionResponseMessage

java.lang.Object
tech.underoaks.coldcase.remote.Message
tech.underoaks.coldcase.remote.Messages.AppendRemoteInteractionResponseMessage
Enclosing class:
Messages

public static class Messages.AppendRemoteInteractionResponseMessage extends Message
Response message for an append remote interaction request. Contains a queue of Interaction objects resulting from the append operation.
  • Constructor Details

    • AppendRemoteInteractionResponseMessage

      public AppendRemoteInteractionResponseMessage()
      Constructs an empty AppendRemoteInteractionResponseMessage.
    • AppendRemoteInteractionResponseMessage

      public AppendRemoteInteractionResponseMessage(String remoteGameControllerInstanceId, Queue<Interaction> interactions)
      Constructs an AppendRemoteInteractionResponseMessage with the specified remote game controller instance identifier and interactions.
      Parameters:
      remoteGameControllerInstanceId - the identifier of the remote game controller instance
      interactions - the queue of Interaction objects returned as a response
  • Method Details

    • getInteractions

      public Queue<Interaction> getInteractions()
      Returns the queue of Interaction objects associated with this response.
      Returns:
      the queue of interactions
    • setInteractions

      public void setInteractions(Queue<Interaction> interactions)
      Sets the queue of Interaction objects for this response.
      Parameters:
      interactions - the queue of interactions to set