| An
IoFuture for asynchronous connect requests.
Example
IoConnector connector = ...;
ConnectFuture future = connector.connect(...);
future.join(); // Wait until the connection attempt is finished.
IoSession session = future.getSession();
session.write(...);
author: The Apache MINA Project (dev@mina.apache.org) version: $Rev: 596168 $, $Date: 2007-11-18 17:20:24 -0700 (Sun, 18 Nov 2007) $ |