[jboss-cvs] JBoss Messaging SVN: r4462 - trunk/src/main/org/jboss/messaging/core/remoting.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jun 13 05:59:51 EDT 2008


Author: ataylor
Date: 2008-06-13 05:59:51 -0400 (Fri, 13 Jun 2008)
New Revision: 4462

Removed:
   trunk/src/main/org/jboss/messaging/core/remoting/NIOConnector.java
   trunk/src/main/org/jboss/messaging/core/remoting/NIOSession.java
Log:
renamed NIOSession and NIOConnector

Deleted: trunk/src/main/org/jboss/messaging/core/remoting/NIOConnector.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/remoting/NIOConnector.java	2008-06-13 09:51:12 UTC (rev 4461)
+++ trunk/src/main/org/jboss/messaging/core/remoting/NIOConnector.java	2008-06-13 09:59:51 UTC (rev 4462)
@@ -1,32 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
- */
-package org.jboss.messaging.core.remoting;
-
-import java.io.IOException;
-
-import org.jboss.messaging.core.client.RemotingSessionListener;
-
-/**
- * @author <a href="mailto:jmesnil at redhat.com">Jeff Mesnil</a>
- * 
- * @version <tt>$Revision$</tt>
- * 
- */
-public interface NIOConnector
-{
-   NIOSession connect() throws IOException;
-
-   boolean disconnect();
-
-   void addSessionListener(RemotingSessionListener listener);
-
-   void removeSessionListener(RemotingSessionListener listener);
-
-   String getServerURI();
-
-   PacketDispatcher getDispatcher();
-}
\ No newline at end of file

Deleted: trunk/src/main/org/jboss/messaging/core/remoting/NIOSession.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/remoting/NIOSession.java	2008-06-13 09:51:12 UTC (rev 4461)
+++ trunk/src/main/org/jboss/messaging/core/remoting/NIOSession.java	2008-06-13 09:59:51 UTC (rev 4462)
@@ -1,24 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
- */
-package org.jboss.messaging.core.remoting;
-
-
-/**
- * @author <a href="mailto:jmesnil at redhat.com">Jeff Mesnil</a>
- * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
- * 
- * @version <tt>$Revision$</tt>
- * 
- */
-public interface NIOSession
-{
-   long getID();
-
-   void write(Packet packet) throws Exception;
-
-   boolean isConnected();
-}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list