KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > net > nio > acceptor > AcceptorCycle


1 package org.sapia.ubik.net.nio.acceptor;
2
3 import java.nio.channels.Channel JavaDoc;
4
5 import org.sapia.ubik.net.nio.ChannelManager;
6 import org.sapia.ubik.net.nio.CycleBase;
7 import org.sapia.ubik.net.nio.CycleListener;
8 import org.sapia.ubik.net.nio.util.ByteBufferPool;
9
10 /**
11  * @author Yanick Duchesne
12  *
13  * <dl>
14  * <dt><b>Copyright: </b>
15  * <dd>Copyright &#169; 2002-2005 <a HREF="http://www.sapia-oss.org">Sapia Open
16  * Source Software </a>. All Rights Reserved.</dd>
17  * </dt>
18  * <dt><b>License: </b>
19  * <dd>Read the license.txt file of the jar or visit the <a
20  * HREF="http://www.sapia-oss.org/license.html">license page </a> at the Sapia
21  * OSS web site</dd>
22  * </dt>
23  * </dl>
24  */

25 public class AcceptorCycle extends CycleBase {
26
27   AcceptorCycle(ChannelManager manager, Channel JavaDoc channel, ByteBufferPool pool,
28       CycleListener listener) {
29     super(STATE_READ, manager, channel, pool, listener);
30   }
31 }
32
Popular Tags