Uses of Interface
com.kuka.comm.Connection

Packages that use Connection
com.kuka.comm Public interfaces for navigation communication framework. 
com.kuka.comm.net Contains classes for network based connections. 
 

Uses of Connection in com.kuka.comm
 

Classes in com.kuka.comm with type parameters of type Connection
 class ConnectionConfigurator<C extends Connection>
          Class to automatically configure Connections, especially used for configuring incoming connections at a server.
 

Classes in com.kuka.comm that implement Connection
 class AbstractConnection
          An abstract implementation for the connection interface.
 

Methods in com.kuka.comm that return types with arguments of type Connection
 Collection<Connection> Server.getConnections()
          Returns a snapshot of current connections on this server.
 Collection<Connection> AbstractServer.getConnections()
           
 

Methods in com.kuka.comm with parameters of type Connection
 void AbstractServer.ConnectionConsumer.accept(Connection connection)
          Performs this operation on the given connection.
protected  void AbstractServer.addConnection(Connection connection)
          Adds a connection to the internal list of connections.
protected  void AbstractServer.fireAcceptedConnection(Connection connection)
          Private method to notify listener about accepted connections.
protected  void AbstractServer.fireIncomingConnection(Connection connection)
          Private method to notify listener about incoming connections.
protected  void AbstractServer.fireRejectedConnection(Connection connection)
          Private method to notify listener about rejected connections.
 void MessageHandler.handle(Connection connection, M message)
          handle will be called whenever a massage of type M arrives at the handler.
 void ServerListener.onAcceptedConnection(Server server, Connection connection)
          This event function will be called, whenever a Connection has been accepted by the Server.
 void BaseServerListener.onAcceptedConnection(Server server, Connection connection)
           
 void ConnectionListener.onConnectionClosed(Connection connection)
          This method is called if the connection has been closed.
 void BaseConnectionListener.onConnectionClosed(Connection connection)
           
 void ConnectionListener.onConnectionFailed(Connection connection, Exception ex)
          This method is called if an initial connection failed due to the socket being not available or through timeout.
 void BaseConnectionListener.onConnectionFailed(Connection connection, Exception ex)
           
 void ConnectionListener.onConnectionSuccessful(Connection connection)
          This method is called if a connection to a robot has been established successfully.
 void BaseConnectionListener.onConnectionSuccessful(Connection connection)
           
 void ConnectionListener.onConnectionTimeout(Connection connection)
          This method is called when the connection hasn't received data for the connection specific timeout.
 void BaseConnectionListener.onConnectionTimeout(Connection connection)
           
 void ServerListener.onIncomingConnection(Server server, Connection connection)
          This event function will be called, whenever an incoming Connection has been created by the Server.
 void BaseServerListener.onIncomingConnection(Server server, Connection connection)
           
 void ConnectionListener.onReceiveError(Connection connection, Exception ex)
          Called when an error occurred during the receiving of data.
 void BaseConnectionListener.onReceiveError(Connection connection, Exception ex)
           
 void ServerListener.onRejectedConnection(Server server, Connection connection)
          This event function will be called, whenever a Connection has been rejected by the Server.
 void BaseServerListener.onRejectedConnection(Server server, Connection connection)
           
protected  void AbstractServer.removeConnection(Connection connection)
          Private method to remove connections from connection list.
 

Uses of Connection in com.kuka.comm.net
 

Classes in com.kuka.comm.net that implement Connection
 class NetConnection
          Abstract subclass which names the generic type for an AbstractConnection regarding to network specific use of ByteBuffer.
 class TcpConnection
          A connection instantiation for TCP over JavaIO.
 class UdpConnection
          Class to establish and use a UDP connection message exchange with other endpoints.
 



Copyright © 2019. All rights reserved.