Uses of Class
org.restlet.ext.nio.internal.connection.Connection
-
Packages that use Connection Package Description org.restlet.ext.nio Integration with Java NIO package.org.restlet.ext.nio.internal.connection org.restlet.ext.nio.internal.controller org.restlet.ext.nio.internal.request org.restlet.ext.nio.internal.way -
-
Uses of Connection in org.restlet.ext.nio
Fields in org.restlet.ext.nio with type parameters of type Connection Modifier and Type Field Description private java.util.List<Connection<T>>ConnectionHelper. connectionsDeprecated.The set of active connections.Methods in org.restlet.ext.nio that return Connection Modifier and Type Method Description Connection<T>ConnectionHelper. checkout(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Checks out a connection associated to the given socket from the pool.Connection<Client>ClientConnectionHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.abstract Connection<T>ConnectionHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Creates a connection associated to the given socket.Connection<Client>HttpsClientHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Connection<Server>HttpsServerHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.Connection<Server>ServerConnectionHelper. createConnection(java.nio.channels.SocketChannel socketChannel, ConnectionController controller, java.net.InetSocketAddress socketAddress)Deprecated.protected Connection<Client>ClientConnectionHelper. getBestConnection(Request request)Deprecated.Tries to reuse an existing connection for the given request, or creates a new one.Methods in org.restlet.ext.nio that return types with arguments of type Connection Modifier and Type Method Description java.util.List<Connection<T>>ConnectionHelper. getConnections()Deprecated.Returns the set of active connections.Methods in org.restlet.ext.nio with parameters of type Connection Modifier and Type Method Description protected booleanHttpServerHelper. canHandle(Connection<Server> connection, Response response)Deprecated.protected abstract booleanServerConnectionHelper. canHandle(Connection<Server> connection, Response response)Deprecated.Indicates if the connection can handle the given response at this point in time.voidConnectionHelper. checkin(Connection<?> connection)Deprecated.Checks in the connection back into the pool.abstract InboundWayConnectionHelper. createInboundWay(Connection<T> connection, int bufferSize)Deprecated.Creates an inbound way for the given connection.InboundWayHttpClientHelper. createInboundWay(Connection<Client> connection, int bufferSize)Deprecated.InboundWayHttpsClientHelper. createInboundWay(Connection<Client> connection, int bufferSize)Deprecated.InboundWayHttpServerHelper. createInboundWay(Connection<Server> connection, int bufferSize)Deprecated.InboundWayHttpsServerHelper. createInboundWay(Connection<Server> connection, int bufferSize)Deprecated.abstract OutboundWayConnectionHelper. createOutboundWay(Connection<T> connection, int bufferSize)Deprecated.Creates an outbound way for the given connection.OutboundWayHttpClientHelper. createOutboundWay(Connection<Client> connection, int bufferSize)Deprecated.OutboundWayHttpsClientHelper. createOutboundWay(Connection<Client> connection, int bufferSize)Deprecated.OutboundWayHttpServerHelper. createOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.OutboundWayHttpsServerHelper. createOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.RequestHttpServerHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.RequestHttpsServerHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.abstract RequestServerConnectionHelper. createRequest(Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Creates a new request. -
Uses of Connection in org.restlet.ext.nio.internal.connection
Subclasses of Connection in org.restlet.ext.nio.internal.connection Modifier and Type Class Description classSslConnection<T extends Connector>Deprecated.Will be removed to favor lower-level network extensions allowing more control at the Restlet API level.Methods in org.restlet.ext.nio.internal.connection that return Connection Modifier and Type Method Description protected Connection<T>ConnectionPool. createObject()Deprecated.Methods in org.restlet.ext.nio.internal.connection with parameters of type Connection Modifier and Type Method Description protected voidConnectionPool. clear(Connection<T> connection)Deprecated. -
Uses of Connection in org.restlet.ext.nio.internal.controller
Methods in org.restlet.ext.nio.internal.controller with parameters of type Connection Modifier and Type Method Description protected voidConnectionController. controlConnection(Connection<?> conn)Deprecated.Controls a given connection for messages to read or write. -
Uses of Connection in org.restlet.ext.nio.internal.request
Fields in org.restlet.ext.nio.internal.request declared as Connection Modifier and Type Field Description private Connection<Server>HttpInboundRequest. connectionDeprecated.The parent network connection.Methods in org.restlet.ext.nio.internal.request that return Connection Modifier and Type Method Description Connection<Server>HttpInboundRequest. getConnection()Deprecated.Returns the related connection.Connection<Server>InboundRequest. getConnection()Deprecated.Returns the related connection.Constructors in org.restlet.ext.nio.internal.request with parameters of type Connection Constructor Description HttpInboundRequest(Context context, Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Constructor.HttpsInboundRequest(Context context, Connection<Server> connection, java.lang.String methodName, java.lang.String resourceUri, java.lang.String protocol)Deprecated.Constructor. -
Uses of Connection in org.restlet.ext.nio.internal.way
Fields in org.restlet.ext.nio.internal.way declared as Connection Modifier and Type Field Description private Connection<?>Way. connectionDeprecated.The parent connection.Methods in org.restlet.ext.nio.internal.way that return Connection Modifier and Type Method Description Connection<Client>ClientInboundWay. getConnection()Deprecated.Connection<Client>ClientOutboundWay. getConnection()Deprecated.Connection<Server>ServerInboundWay. getConnection()Deprecated.Connection<Server>ServerOutboundWay. getConnection()Deprecated.Connection<?>Way. getConnection()Deprecated.Returns the parent connection.Constructors in org.restlet.ext.nio.internal.way with parameters of type Connection Constructor Description ClientInboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.ClientOutboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.HttpClientInboundWay(Connection<Client> connection, int bufferSize)Deprecated.Constructor.HttpClientOutboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.HttpsClientInboundWay(Connection<Client> connection, int bufferSize)Deprecated.Constructor.HttpsClientOutboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.HttpServerInboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpsServerInboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.HttpsServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.InboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.OutboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.ServerInboundWay(Connection<?> connection, int bufferSize)Deprecated.Constructor.ServerOutboundWay(Connection<Server> connection, int bufferSize)Deprecated.Constructor.Way(Connection<?> connection, int bufferSize)Deprecated.Constructor.
-