Package org.apache.hadoop.util

Examples of org.apache.hadoop.util.CloseableReferenceCount


   * The Channel associated with this socket.
   */
  private final DomainChannel channel = new DomainChannel();

  private DomainSocket(String path, int fd) {
    this.refCount = new CloseableReferenceCount();
    this.fd = fd;
    this.path = path;
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.util.CloseableReferenceCount

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.