| Sets up a connection between a source and a sink that will do nothing but
continuously move messages from source to sink. In other words, use a
Connector to creates a zero-length pipe/channel between a
source and a sink. This movement is done by a supplied
Executor ,
so will happen asynchronously.
Note that this class is
org.jicarilla.lang.Active , and extends from
org.jicarilla.lang.AbstractExecutable . As such, you should not override the
Connector.initialize() nor the
Connector.dispose() methods, but only ever
override
Connector.doInitialize() and/or
Connector.doDispose() . When you do,
make sure to call the overridden methods as well.
author: Leo Simons version: $Id: Connector.java,v 1.2 2004/03/23 13:37:58 lsimons Exp $ |