インタフェース
com.jme3.network.kernel.Kernel の使用

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   
 

com.jme3.network.base での Kernel の使用
 

Kernel 型のパラメータを持つ com.jme3.network.base のコンストラクタ
DefaultServer(java.lang.String gameName, int version, Kernel reliable, Kernel fast)
           
KernelAdapter(DefaultServer server, Kernel kernel, MessageListener<HostedConnection> messageDispatcher, boolean reliable)
           
 

com.jme3.network.kernel での Kernel の使用
 

Kernel を実装している com.jme3.network.kernel のクラス
 class AbstractKernel
          Base implementation of the Kernel interface providing several useful default implementations of some methods.
 

Kernel を返す com.jme3.network.kernel のメソッド
 Kernel Endpoint.getKernel()
          Returns the kernel to which this endpoint belongs.
 Kernel EndpointEvent.getSource()
           
 

Kernel 型のパラメータを持つ com.jme3.network.kernel のメソッド
static EndpointEvent EndpointEvent.createAdd(Kernel source, Endpoint p)
           
static EndpointEvent EndpointEvent.createRemove(Kernel source, Endpoint p)
           
 

Kernel 型のパラメータを持つ com.jme3.network.kernel のコンストラクタ
EndpointEvent(Kernel source, Endpoint p, EndpointEvent.Type type)
           
 

com.jme3.network.kernel.tcp での Kernel の使用
 

Kernel を実装している com.jme3.network.kernel.tcp のクラス
 class SelectorKernel
          A Kernel implementation based on NIO selectors.
 

Kernel を返す com.jme3.network.kernel.tcp のメソッド
 Kernel NioEndpoint.getKernel()
           
 

com.jme3.network.kernel.udp での Kernel の使用
 

Kernel を実装している com.jme3.network.kernel.udp のクラス
 class UdpKernel
          A Kernel implementation using UDP packets.
 

Kernel を返す com.jme3.network.kernel.udp のメソッド
 Kernel UdpEndpoint.getKernel()