Class Envelope

java.lang.Object
com.jme3.network.kernel.Envelope

public class Envelope extends Object
Encapsulates a received piece of data. This is used by the Kernel to track incoming chunks of data.
  • Constructor Details Link icon

    • Envelope Link icon

      public Envelope(Endpoint source, byte[] data, boolean reliable)
      Creates an incoming envelope holding the data from the specified source. The 'reliable' flag further indicates on which mode of transport the data arrived.
  • Method Details Link icon

    • getSource Link icon

      public Endpoint getSource()
    • getData Link icon

      public byte[] getData()
    • isReliable Link icon

      public boolean isReliable()
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object