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

Packages that use EndpointEvent
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 EndpointEvent in com.jme3.network.base
 

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

Uses of EndpointEvent in com.jme3.network.kernel
 

Methods in com.jme3.network.kernel that return EndpointEvent
static EndpointEvent EndpointEvent.createAdd(Kernel source, Endpoint p)
           
static EndpointEvent EndpointEvent.createRemove(Kernel source, Endpoint p)
           
 EndpointEvent AbstractKernel.nextEvent()
          Removes and returnsn one endpoint event from the event queue or null if there are no endpoint events.
 EndpointEvent Kernel.nextEvent()
          Removes and returnsn one endpoint event from the event queue or null if there are no endpoint events.
 

Methods in com.jme3.network.kernel with parameters of type EndpointEvent
protected  void AbstractKernel.addEvent(EndpointEvent e)