Author: trustin
Date: Tue Nov 30 22:52:51 2004
New Revision: 109306

URL: http://svn.apache.org/viewcvs?view=rev&rev=109306
Log:
 * Renamed iterator() into getAll()
 * Added getByTransportType()
Modified:
   
incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java

Modified: 
incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java
Url: 
http://svn.apache.org/viewcvs/incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java?view=diff&rev=109306&p1=incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java&r1=109305&p2=incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java&r2=109306
==============================================================================
--- 
incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java
   (original)
+++ 
incubator/directory/seda/branches/trustin/src/java/org/apache/netty/registry/ServiceRegistry.java
   Tue Nov 30 22:52:51 2004
@@ -43,11 +43,13 @@
 
     void unbind(Service service);
 
-    Iterator iterator();
-
     Service getByName(String name, TransportType transportType);
 
     Service getByPort(int port, TransportType transportType);
+
+    Iterator getAll();
+    
+    Iterator getByTransportType(TransportType transportType);
 
     /**
      * Gets an iteration over all the entries for a service by the name of the

Reply via email to