/** * $RCSfile$ * $Revision: $ * $Date: $ * * Copyright (C) 2006 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */packageorg.jivesoftware.wildfire.net;importjava.io.IOException;importjava.nio.channels.SelectionKey;/** * @author Daniele Piras */interfaceSelectorAction{publicabstractvoidread(SelectionKeykey)throwsIOException;publicabstractvoidconnect(SelectionKeykey)throwsIOException;}