Package org.cspoker.common.util.threading

Examples of org.cspoker.common.util.threading.LoggingThreadFactory


  public XmlHttpSerializer(URL url, final String username, final String password) {
    authorizationString = "Basic "
      + Base64.encode((username + ":" + password).getBytes(), 0);
    this.url = url;
    scheduler = Executors.newSingleThreadScheduledExecutor(new LoggingThreadFactory("http"));
    synchronized (pollerLock) {
      poller = new DummyScheduledFuture<Object>();
    }
  }
View Full Code Here

TOP

Related Classes of org.cspoker.common.util.threading.LoggingThreadFactory

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.