Package net.sf.lipermi.handler.filter

Examples of net.sf.lipermi.handler.filter.DefaultFilter


  public void close() {
    enabled = false;
  }
 
  public void bind(int port, CallHandler callHandler) throws IOException {
    bind(port, callHandler, new DefaultFilter());
  }
View Full Code Here


  public void removeClientListener(IClientListener listener) {
    listeners.remove(listener);
 
 
  public Client(String address, int port, CallHandler callHandler) throws IOException {
    this(address, port, callHandler, new DefaultFilter());
  }
View Full Code Here

TOP

Related Classes of net.sf.lipermi.handler.filter.DefaultFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.