Uses of Class
com.jme3.network.kernel.Envelope

Packages that use Envelope
com.jme3.network.base The base package contains the default implementations for the Client and Server interfaces from the public API. 
com.jme3.network.kernel The kernel package is the heart of the JME networking module and controls the routing and dispatch of message data over different transport implementations. 
 

Uses of Envelope in com.jme3.network.base
 

Methods in com.jme3.network.base with parameters of type Envelope
protected  void KernelAdapter.createAndDispatch(Envelope env)
           
 

Uses of Envelope in com.jme3.network.kernel
 

Fields in com.jme3.network.kernel declared as Envelope
static Envelope Kernel.EVENTS_PENDING
          A marker envelope returned from read() that indicates that there are events pending.
 

Methods in com.jme3.network.kernel that return Envelope
 Envelope AbstractKernel.read()
          Removes one envelope from the received messages queue or blocks until one is available.
 Envelope Kernel.read()
          Removes one envelope from the received messages queue or blocks until one is available.
 

Methods in com.jme3.network.kernel with parameters of type Envelope
protected  void AbstractKernel.addEnvelope(Envelope env)