Package com.torrent4j.storage

Examples of com.torrent4j.storage.NIOTorrentStorage


   *
   * @param protocol
   *            thw protocol to use
   */
  public TorrentController(TorrentProtocol protocol) {
    this(protocol, new NIOTorrentStorage());
  }
View Full Code Here


  /**
   * Creates a new controller with {@link PeerWireProtocol} as default
   * protocol and {@link NIOTorrentStorage} as default storage.
   */
  public TorrentController() {
    this(new PeerWireProtocol(), new NIOTorrentStorage());
  }
View Full Code Here

TOP

Related Classes of com.torrent4j.storage.NIOTorrentStorage

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.