View Javadoc

1   /*
2    * Created on Jan 23, 2004
3    *
4    */
5   package org.neo.swarm.services.binding;
6   
7   import java.net.InetAddress;
8   
9   import org.neo.swarm.services.Service;
10  
11  /***
12   * Defines our binding interface that mcast and static bind threads implement
13   *  @author navery
14   */
15  public interface BindingRunnable extends Runnable, Service {
16  	
17  	public void addLocation(InetAddress host, int port);
18  
19  }