Package freenet.support

Examples of freenet.support.ShortBuffer


    private final WeakHashSet<PeerNode> peersFailed;
    private final HashSet<PeerNode> peersFetching;
   
    private UOMDependencyFetcher(byte[] expectedHash, long size, File saveTo, boolean executable, UOMDependencyFetcherCallback callback) {
      this.expectedHash = expectedHash;
      expectedHashBuffer = new ShortBuffer(expectedHash);
      this.size = size;
      this.executable = executable;
      this.saveTo = saveTo;
      cb = callback;
      peersFailed = new WeakHashSet<PeerNode>();
View Full Code Here

TOP

Related Classes of freenet.support.ShortBuffer

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.