Uses of Interface
com.biglybt.core.dht.DHTOperationListener
-
Packages that use DHTOperationListener Package Description com.biglybt.core.dht com.biglybt.core.dht.control com.biglybt.core.dht.control.impl com.biglybt.core.dht.impl -
-
Uses of DHTOperationListener in com.biglybt.core.dht
Classes in com.biglybt.core.dht that implement DHTOperationListener Modifier and Type Class Description class
DHTOperationAdapter
Fields in com.biglybt.core.dht declared as DHTOperationListener Modifier and Type Field Description private DHTOperationListener
DHTOperationAdapter. delegate
Methods in com.biglybt.core.dht with parameters of type DHTOperationListener Modifier and Type Method Description void
DHT. get(byte[] key, java.lang.String description, short flags, int max_values, long timeout, boolean exhaustive, boolean high_priority, DHTOperationListener listener)
void
DHT. put(byte[] key, java.lang.String description, byte[] value, short flags, boolean high_priority, DHTOperationListener listener)
default is HIGH PRIORITY.void
DHT. put(byte[] key, java.lang.String description, byte[] value, short flags, byte life_hours, boolean high_priority, DHTOperationListener listener)
void
DHT. put(byte[] key, java.lang.String description, byte[] value, short flags, byte life_hours, byte replication_control, boolean high_priority, DHTOperationListener listener)
void
DHT. put(byte[] key, java.lang.String description, byte[] value, short flags, DHTOperationListener listener)
byte[]
DHT. remove(byte[] key, java.lang.String description, DHTOperationListener listener)
byte[]
DHT. remove(DHTTransportContact[] contacts, byte[] key, java.lang.String description, DHTOperationListener listener)
Constructors in com.biglybt.core.dht with parameters of type DHTOperationListener Constructor Description DHTOperationAdapter(DHTOperationListener _delegate)
-
Uses of DHTOperationListener in com.biglybt.core.dht.control
Methods in com.biglybt.core.dht.control with parameters of type DHTOperationListener Modifier and Type Method Description void
DHTControl. get(byte[] key, java.lang.String description, short flags, int max_values, long timeout, boolean exhaustive, boolean high_priority, DHTOperationListener listener)
boolean
DHTControl. lookup(byte[] id, java.lang.String description, long timeout, DHTOperationListener listener)
boolean
DHTControl. lookupEncoded(byte[] id, java.lang.String description, long timeout, boolean high_priority, DHTOperationListener listener)
void
DHTControl. put(byte[] key, java.lang.String description, byte[] value, short flags, byte life_hours, byte replication_control, boolean high_priority, DHTOperationListener listener)
void
DHTControl. putDirectEncodedKeys(byte[][] keys, java.lang.String description, DHTTransportValue[][] value_sets, DHTTransportContact contact, DHTOperationListener listener)
byte[]
DHTControl. remove(byte[] key, java.lang.String description, DHTOperationListener listener)
byte[]
DHTControl. remove(DHTTransportContact[] contacts, byte[] key, java.lang.String description, DHTOperationListener listener)
-
Uses of DHTOperationListener in com.biglybt.core.dht.control.impl
Classes in com.biglybt.core.dht.control.impl that implement DHTOperationListener Modifier and Type Class Description protected static class
DHTControlImpl.DHTOperationListenerDemuxer
(package private) static class
DHTControlImpl.lookupResultHandler
Fields in com.biglybt.core.dht.control.impl declared as DHTOperationListener Modifier and Type Field Description private DHTOperationListener
DHTControlImpl.DHTOperationListenerDemuxer. delegate
Methods in com.biglybt.core.dht.control.impl with parameters of type DHTOperationListener Modifier and Type Method Description void
DHTControlImpl. get(byte[] unencoded_key, java.lang.String description, short flags, int max_values, long timeout, boolean exhaustive, boolean high_priority, DHTOperationListener get_listener)
boolean
DHTControlImpl. lookup(byte[] unencoded_key, java.lang.String description, long timeout, DHTOperationListener lookup_listener)
boolean
DHTControlImpl. lookupEncoded(byte[] encoded_key, java.lang.String description, long timeout, boolean high_priority, DHTOperationListener lookup_listener)
void
DHTControlImpl. put(byte[] _unencoded_key, java.lang.String _description, byte[] _value, short _flags, byte _life_hours, byte _replication_control, boolean _high_priority, DHTOperationListener _listener)
void
DHTControlImpl. putDirectEncodedKeys(byte[][] encoded_keys, java.lang.String description, DHTTransportValue[][] value_sets, DHTTransportContact contact, DHTOperationListener listener)
byte[]
DHTControlImpl. remove(byte[] unencoded_key, java.lang.String description, DHTOperationListener listener)
byte[]
DHTControlImpl. remove(DHTTransportContact[] contacts, byte[] unencoded_key, java.lang.String description, DHTOperationListener listener)
Constructors in com.biglybt.core.dht.control.impl with parameters of type DHTOperationListener Constructor Description DHTOperationListenerDemuxer(DHTOperationListener _delegate)
lookupResultHandler(DHTOperationListener delegate)
-
Uses of DHTOperationListener in com.biglybt.core.dht.impl
Methods in com.biglybt.core.dht.impl with parameters of type DHTOperationListener Modifier and Type Method Description void
DHTImpl. get(byte[] key, java.lang.String description, short flags, int max_values, long timeout, boolean exhaustive, boolean high_priority, DHTOperationListener listener)
void
DHTImpl. put(byte[] key, java.lang.String description, byte[] value, short flags, boolean high_priority, DHTOperationListener listener)
void
DHTImpl. put(byte[] key, java.lang.String description, byte[] value, short flags, byte life_hours, boolean high_priority, DHTOperationListener listener)
void
DHTImpl. put(byte[] key, java.lang.String description, byte[] value, short flags, byte life_hours, byte replication_control, boolean high_priority, DHTOperationListener listener)
void
DHTImpl. put(byte[] key, java.lang.String description, byte[] value, short flags, DHTOperationListener listener)
byte[]
DHTImpl. remove(byte[] key, java.lang.String description, DHTOperationListener listener)
byte[]
DHTImpl. remove(DHTTransportContact[] contacts, byte[] key, java.lang.String description, DHTOperationListener listener)
-