Uses of Interface
com.biglybt.pif.peers.PeerReadRequest
-
-
Uses of PeerReadRequest in com.biglybt.core.disk
Subinterfaces of PeerReadRequest in com.biglybt.core.disk Modifier and Type Interface Description interface
DiskManagerReadRequest
This class represents a Bittorrent Request. -
Uses of PeerReadRequest in com.biglybt.core.disk.impl.access.impl
Classes in com.biglybt.core.disk.impl.access.impl that implement PeerReadRequest Modifier and Type Class Description class
DiskManagerReadRequestImpl
This class represents a Bittorrent Request. -
Uses of PeerReadRequest in com.biglybt.pif.peers
Methods in com.biglybt.pif.peers with parameters of type PeerReadRequest Modifier and Type Method Description boolean
Peer. addRequest(PeerReadRequest request)
void
Peer. cancelRequest(PeerReadRequest request)
void
PeerManager. requestCancelled(PeerReadRequest request, Peer sender)
void
PeerManager. requestComplete(PeerReadRequest request, PooledByteBuffer data, Peer sender)
-
Uses of PeerReadRequest in com.biglybt.pifimpl.local.peers
Methods in com.biglybt.pifimpl.local.peers with parameters of type PeerReadRequest Modifier and Type Method Description boolean
PeerImpl. addRequest(PeerReadRequest request)
void
PeerImpl. cancelRequest(PeerReadRequest request)
void
PeerManagerImpl. requestCancelled(PeerReadRequest request, Peer sender)
void
PeerManagerImpl. requestComplete(PeerReadRequest request, PooledByteBuffer data, Peer sender)
-
Uses of PeerReadRequest in com.biglybt.plugin.extseed
Fields in com.biglybt.plugin.extseed with type parameters of type PeerReadRequest Modifier and Type Field Description private java.util.List<PeerReadRequest>
ExternalSeedPeer. request_list
Methods in com.biglybt.plugin.extseed that return types with arguments of type PeerReadRequest Modifier and Type Method Description java.util.List<PeerReadRequest>
ExternalSeedReader. getExpiredRequests()
java.util.List<PeerReadRequest>
ExternalSeedPeer. getRequests()
java.util.List<PeerReadRequest>
ExternalSeedReader. getRequests()
Methods in com.biglybt.plugin.extseed with parameters of type PeerReadRequest Modifier and Type Method Description boolean
ExternalSeedPeer. addRequest(PeerReadRequest request)
void
ExternalSeedPeer. cancelRequest(PeerReadRequest request)
void
ExternalSeedReader. cancelRequest(PeerReadRequest request)
void
ExternalSeedPeer. requestCancelled(PeerReadRequest request)
void
ExternalSeedReaderListener. requestCancelled(PeerReadRequest request)
void
ExternalSeedPeer. requestComplete(PeerReadRequest request, PooledByteBuffer data)
void
ExternalSeedReaderListener. requestComplete(PeerReadRequest request, PooledByteBuffer data)
void
ExternalSeedPeer. requestFailed(PeerReadRequest request)
void
ExternalSeedReaderListener. requestFailed(PeerReadRequest request)
Method parameters in com.biglybt.plugin.extseed with type arguments of type PeerReadRequest Modifier and Type Method Description void
ExternalSeedReader. addRequests(java.util.List<PeerReadRequest> requests)
-
Uses of PeerReadRequest in com.biglybt.plugin.extseed.impl
Fields in com.biglybt.plugin.extseed.impl declared as PeerReadRequest Modifier and Type Field Description private PeerReadRequest
ExternalSeedReaderRequest. current_request
Fields in com.biglybt.plugin.extseed.impl with type parameters of type PeerReadRequest Modifier and Type Field Description private java.util.List<PeerReadRequest>
ExternalSeedReaderImpl. dangling_requests
private java.util.List<PeerReadRequest>
ExternalSeedReaderImpl. requests
private java.util.List<PeerReadRequest>
ExternalSeedReaderRequest. requests
Methods in com.biglybt.plugin.extseed.impl that return types with arguments of type PeerReadRequest Modifier and Type Method Description java.util.List<PeerReadRequest>
ExternalSeedReaderImpl. getExpiredRequests()
java.util.List<PeerReadRequest>
ExternalSeedReaderImpl. getRequests()
Methods in com.biglybt.plugin.extseed.impl with parameters of type PeerReadRequest Modifier and Type Method Description void
ExternalSeedReaderImpl. cancelRequest(PeerReadRequest request)
protected void
ExternalSeedReaderImpl. informCancelled(PeerReadRequest request)
protected void
ExternalSeedReaderImpl. informComplete(PeerReadRequest request, byte[] buffer)
protected void
ExternalSeedReaderImpl. informFailed(PeerReadRequest request)
Method parameters in com.biglybt.plugin.extseed.impl with type arguments of type PeerReadRequest Modifier and Type Method Description void
ExternalSeedReaderImpl. addRequests(java.util.List<PeerReadRequest> new_requests)
protected void
ExternalSeedReaderImpl. processRequests(java.util.List<PeerReadRequest> requests)
protected int
ExternalSeedReaderImpl. selectRequests(java.util.List<PeerReadRequest> requests)
Constructor parameters in com.biglybt.plugin.extseed.impl with type arguments of type PeerReadRequest Constructor Description ExternalSeedReaderRequest(ExternalSeedReaderImpl _reader, java.util.List<PeerReadRequest> _requests)
-