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

Endpoint を使用しているパッケージ
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.kernel での Endpoint の使用
 

Endpoint を返す com.jme3.network.kernel のメソッド
 Endpoint EndpointEvent.getEndpoint()
           
 Endpoint Envelope.getSource()
           
 

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

Endpoint 型の型引数を持つ com.jme3.network.kernel のメソッドパラメータ
 void Kernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
          Dispatches the data to all endpoints managed by the kernel that match the specified endpoint filter..
 

Endpoint 型のパラメータを持つ com.jme3.network.kernel のコンストラクタ
EndpointEvent(Kernel source, Endpoint p, EndpointEvent.Type type)
           
Envelope(Endpoint source, byte[] data, boolean reliable)
          Creates an incoming envelope holding the data from the specified source.
 

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

Endpoint を実装している com.jme3.network.kernel.tcp のクラス
 class NioEndpoint
          Endpoint implementation that encapsulates the channel IO based connection information and keeps track of the outbound data queue for the channel.
 

Endpoint 型の型引数を持つ com.jme3.network.kernel.tcp のメソッドパラメータ
 void SelectorKernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
           
 

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

Endpoint を実装している com.jme3.network.kernel.udp のクラス
 class UdpEndpoint
          Endpoint implementation that encapsulates the UDP connection information for return messaging, identification of envelope sources, etc.
 

Endpoint 型の型引数を持つ com.jme3.network.kernel.udp のメソッドパラメータ
 void UdpKernel.broadcast(Filter<? super Endpoint> filter, java.nio.ByteBuffer data, boolean reliable, boolean copy)
          Dispatches the data to all endpoints managed by the kernel.