|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectcom.jme3.network.connection.Connection
com.jme3.network.connection.TCPConnection
com.jme3.network.connection.SSLTCPConnection
public class SSLTCPConnection
The SSLTCPConnection. Handles all SSL traffic for both client and server. Please do not use this class, as it does not work. Replacement is custom encryption over TCP or UDP, without using SSL.
コンストラクタの概要 | |
---|---|
SSLTCPConnection(java.lang.String name)
|
メソッドの概要 | |
---|---|
void |
accept(java.nio.channels.SelectableChannel channel)
Accept an incoming connection. |
void |
bind(java.net.SocketAddress address)
Bind to an address. |
void |
connect(java.nio.channels.SelectableChannel channel)
Finish the connection. |
void |
connect(java.net.SocketAddress address)
Connect to a server using this overload. |
void |
read(java.nio.channels.SelectableChannel channel)
Read from the channel. |
void |
readAndUnwrap(java.nio.channels.SocketChannel channel)
|
void |
send(java.lang.Object object)
|
void |
send(java.nio.channels.SocketChannel channel,
java.lang.Object object)
|
void |
write(java.nio.channels.SelectableChannel channel)
Write to a channel. |
クラス com.jme3.network.connection.TCPConnection から継承されたメソッド |
---|
cleanup, sendObject, sendObject |
クラス com.jme3.network.connection.Connection から継承されたメソッド |
---|
addConnectionListener, addConnectorFilter, addMessageListener, addMessageListener, addToDisconnectionQueue, getConnectors, getLocalConnectors, isAlive, removeConnectionListener, removeConnectorFilter, removeMessageListener, removeMessageListener, run, shouldFilterConnector |
クラス java.lang.Object から継承されたメソッド |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public SSLTCPConnection(java.lang.String name)
メソッドの詳細 |
---|
public void connect(java.net.SocketAddress address) throws java.io.IOException
Connection
の記述:
TCPConnection
内の connect
address
- The address to connect to.
java.io.IOException
- When a problem occurs.public void bind(java.net.SocketAddress address) throws java.io.IOException
Connection
の記述:
TCPConnection
内の bind
address
- The address to bind to.
java.io.IOException
- When a problem occurs.public void connect(java.nio.channels.SelectableChannel channel) throws java.io.IOException
Connection
の記述:
TCPConnection
内の connect
channel
- The channel.
java.io.IOException
- When a problem occurs.public void accept(java.nio.channels.SelectableChannel channel) throws java.io.IOException
Connection
の記述:
TCPConnection
内の accept
channel
- The channel.
java.io.IOException
- When a problem occurs.public void read(java.nio.channels.SelectableChannel channel) throws java.io.IOException
Connection
の記述:
TCPConnection
内の read
channel
- The channel.
java.io.IOException
- When a problem occurs.public void readAndUnwrap(java.nio.channels.SocketChannel channel) throws java.io.IOException
java.io.IOException
public void send(java.lang.Object object) throws java.io.IOException
java.io.IOException
public void send(java.nio.channels.SocketChannel channel, java.lang.Object object) throws java.io.IOException
java.io.IOException
public void write(java.nio.channels.SelectableChannel channel) throws java.io.IOException
Connection
の記述:
TCPConnection
内の write
channel
- The channel to write to.
java.io.IOException
- When a problem occurs.
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |