void |
AbstractTcpConnection.connect() |
|
void |
FileConnection.connect() |
This method opens a connection.
|
abstract void |
ICommConnection.connect() |
This method opens a connection.
|
void |
MpsLegacyTunnelConnection.connect() |
|
void |
MpsTunnelConnection.connect() |
|
void |
PrinterConnection.connect() |
|
void |
Rs232Connection.connect() |
|
void |
UsbConnection.connect() |
|
int |
AbstractTcpConnection.dataAvailable() |
|
int |
FileConnection.dataAvailable() |
|
abstract int |
ICommConnection.dataAvailable() |
|
int |
MpsTunnelConnection.dataAvailable() |
|
int |
PrinterConnection.dataAvailable() |
|
int |
Rs232Connection.dataAvailable() |
|
int |
UsbConnection.dataAvailable() |
|
void |
AbstractTcpConnection.disconnect() |
|
void |
FileConnection.disconnect() |
|
abstract void |
ICommConnection.disconnect() |
Closes the communication interface
|
void |
MpsLegacyTunnelConnection.disconnect() |
|
void |
MpsTunnelConnection.disconnect() |
|
void |
PrinterConnection.disconnect() |
|
void |
Rs232Connection.disconnect() |
|
void |
UsbConnection.disconnect() |
|
static java.lang.String[] |
Rs232Connection.getSerialPorts() |
get the available Serial Ports
|
static java.util.ArrayList<jd2xx.JD2XX.DeviceInfo> |
UsbConnection.getUSBDevices() |
|
static java.util.LinkedList<java.lang.String> |
UsbConnection.getUSBDevicesList() |
|
boolean |
AbstractTcpConnection.isAlive(int time) |
Test if the Ethernet Device is reachable.
|
static boolean |
AbstractTcpConnection.isAlive(java.lang.String ipAdress,
int time) |
Test if a Ethernet Device is reachable.
|
java.lang.StringBuilder |
ICommConnection.receive(int... terminators) |
Receives data from the connected device until one of the terminator signs is found.
|
java.lang.StringBuilder |
MpsTunnelConnection.receive(int... terminators) |
|
java.lang.StringBuilder |
PrinterConnection.receive(int... terminators) |
|
java.lang.StringBuilder |
Rs232Connection.receive(int... terminators) |
|
java.lang.StringBuilder |
SslTcpConnection.receive(int... terminators) |
|
java.lang.StringBuilder |
TcpConnection.receive(int... terminators) |
|
java.lang.StringBuilder |
UsbConnection.receive(int... terminators) |
|
int |
AbstractTcpConnection.recv() |
|
int |
FileConnection.recv() |
|
abstract int |
ICommConnection.recv() |
Receives a single byte.
|
void |
ICommConnection.recv(byte[] b) |
Receive bytes until buffer is filled or timeout occurrs.
|
void |
ICommConnection.recv(byte[] b,
int off,
int len) |
Receives until buffer is filled or timeout occurrs.
|
java.lang.String |
ICommConnection.recv(int... terminators) |
Receives data from the connected device until one of the terminator signs is found.
|
int |
MpsTunnelConnection.recv() |
|
void |
MpsTunnelConnection.recv(byte[] b,
int off,
int len) |
|
int |
PrinterConnection.recv() |
Receives one character from the device.
|
void |
PrinterConnection.recv(byte[] b,
int off,
int len) |
|
int |
Rs232Connection.recv() |
|
void |
Rs232Connection.recv(byte[] b,
int off,
int len) |
|
void |
SslTcpConnection.recv(byte[] b,
int off,
int len) |
|
void |
TcpConnection.recv(byte[] b,
int off,
int len) |
|
int |
UsbConnection.recv() |
|
void |
UsbConnection.recv(byte[] b,
int off,
int len) |
|
void |
AbstractTcpConnection.send(byte[] senddata) |
|
void |
FileConnection.send(byte[] senddata) |
|
abstract void |
ICommConnection.send(byte[] senddata) |
Sends data to the connected device
|
void |
ICommConnection.send(java.lang.String senddata) |
Sends data to the connected device
|
void |
MpsLegacyTunnelConnection.send(byte[] senddata) |
|
void |
MpsTunnelConnection.send(byte[] senddata) |
|
void |
PrinterConnection.send(byte[] senddata) |
Sends data to the connected device.
|
void |
Rs232Connection.send(byte[] senddata) |
|
void |
TcpConnection.send(java.lang.String senddata) |
|
void |
UsbConnection.send(byte[] senddata) |
|
void |
AbstractTcpConnection.setRecvTimeout(int timeout) |
|
abstract void |
ICommConnection.setRecvTimeout(int timeout) |
set the receive timeout for read data, if the timeout expires an CommConnectionException is
raised with errorcode RECV_TIMEOUT, the connection is still valid
|
void |
MpsTunnelConnection.setRecvTimeout(int timeout) |
|
void |
PrinterConnection.setRecvTimeout(int timeout) |
|
void |
Rs232Connection.setRecvTimeout(int timeout) |
|
void |
UsbConnection.setRecvTimeout(int timeout) |
|
void |
UsbConnection.setSendTimeout(int timeout) |
Set the send timeout
|