Uses of Interface
com.jme3.network.kernel.Kernel

Packages that use Kernel
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. 
com.jme3.network.kernel.tcp   
com.jme3.network.kernel.udp   
 

Uses of Kernel in com.jme3.network.base
 

Methods in com.jme3.network.base that return Kernel
 Kernel KernelFactory.createKernel(int channel, int port)
           
 Kernel NioKernelFactory.createKernel(int channel, int port)
           
 Kernel KernelAdapter.getKernel()
           
 

Constructors in com.jme3.network.base with parameters of type Kernel
DefaultServer(java.lang.String gameName, int version, Kernel reliable, Kernel fast)
           
KernelAdapter(DefaultServer server, Kernel kernel, MessageListener<HostedConnection> messageDispatcher, boolean reliable)
           
 

Uses of Kernel in com.jme3.network.kernel
 

Classes in com.jme3.network.kernel that implement Kernel
 class AbstractKernel
          Base implementation of the Kernel interface providing several useful default implementations of some methods.
 

Methods in com.jme3.network.kernel that return Kernel
 Kernel Endpoint.getKernel()
          Returns the kernel to which this endpoint belongs.
 Kernel EndpointEvent.getSource()
           
 

Methods in com.jme3.network.kernel with parameters of type Kernel
static EndpointEvent EndpointEvent.createAdd(Kernel source, Endpoint p)
           
static EndpointEvent EndpointEvent.createRemove(Kernel source, Endpoint p)
           
 

Constructors in com.jme3.network.kernel with parameters of type Kernel
EndpointEvent(Kernel source, Endpoint p, EndpointEvent.Type type)
           
 

Uses of Kernel in com.jme3.network.kernel.tcp
 

Classes in com.jme3.network.kernel.tcp that implement Kernel
 class SelectorKernel
          A Kernel implementation based on NIO selectors.
 

Methods in com.jme3.network.kernel.tcp that return Kernel
 Kernel NioEndpoint.getKernel()
           
 

Uses of Kernel in com.jme3.network.kernel.udp
 

Classes in com.jme3.network.kernel.udp that implement Kernel
 class UdpKernel
          A Kernel implementation using UDP packets.
 

Methods in com.jme3.network.kernel.udp that return Kernel
 Kernel UdpEndpoint.getKernel()