Class ValueResponseMessage<V>

    • Constructor Summary

      Constructors 
      Constructor Description
      ValueResponseMessage​(java.lang.Object id, V value)
      Constructs a ValueResponseMessage.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected java.lang.String contentString()  
      V getValue()
      The response value, i.e.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface co.paralleluniverse.actors.behaviors.IdMessage

        getId
    • Constructor Detail

      • ValueResponseMessage

        @ConstructorParameters({"id","value"})
        public ValueResponseMessage​(java.lang.Object id,
                                    V value)
        Constructs a ValueResponseMessage.
        Parameters:
        id - the id of the RequestMessage this is a response to.
        value - the response value, i.e. the result of the request
    • Method Detail

      • getValue

        public V getValue()
        The response value, i.e. the result of the request.