net.i2p.router.networkdb.kademlia
Class FloodfillStoreJob

java.lang.Object
  extended bynet.i2p.router.JobImpl
      extended bynet.i2p.router.networkdb.kademlia.StoreJob
          extended bynet.i2p.router.networkdb.kademlia.FloodfillStoreJob
All Implemented Interfaces:
Job

class FloodfillStoreJob
extends StoreJob


Field Summary
protected  StoreState _state
           
 
Constructor Summary
FloodfillStoreJob(RouterContext context, FloodfillNetworkDatabaseFacade facade, Hash key, DataStructure data, Job onSuccess, Job onFailure, long timeoutMs)
          Create a new search for the routingKey specified
FloodfillStoreJob(RouterContext context, FloodfillNetworkDatabaseFacade facade, Hash key, DataStructure data, Job onSuccess, Job onFailure, long timeoutMs, java.util.Set toSkip)
           
 
Method Summary
protected  void fail()
          Send totally failed
 java.lang.String getName()
          Descriptive name of the task
protected  int getParallelization()
           
protected  int getRedundancy()
           
 void runJob()
          Actually perform the task.
protected  void succeed()
          Send was totally successful
 
Methods inherited from class net.i2p.router.JobImpl
dropped, getAddedBy, getContext, getJobId, getMadeReadyOn, getTiming, madeReady, requeue, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_state

protected StoreState _state
Constructor Detail

FloodfillStoreJob

public FloodfillStoreJob(RouterContext context,
                         FloodfillNetworkDatabaseFacade facade,
                         Hash key,
                         DataStructure data,
                         Job onSuccess,
                         Job onFailure,
                         long timeoutMs)
Create a new search for the routingKey specified


FloodfillStoreJob

public FloodfillStoreJob(RouterContext context,
                         FloodfillNetworkDatabaseFacade facade,
                         Hash key,
                         DataStructure data,
                         Job onSuccess,
                         Job onFailure,
                         long timeoutMs,
                         java.util.Set toSkip)
Parameters:
toSkip - set of peer hashes of people we dont want to send the data to (e.g. we already know they have it). This can be null.
Method Detail

getParallelization

protected int getParallelization()
Overrides:
getParallelization in class StoreJob

getRedundancy

protected int getRedundancy()
Overrides:
getRedundancy in class StoreJob

succeed

protected void succeed()
Send was totally successful

Overrides:
succeed in class StoreJob

getName

public java.lang.String getName()
Description copied from interface: Job
Descriptive name of the task

Specified by:
getName in interface Job
Overrides:
getName in class StoreJob

runJob

public void runJob()
Description copied from interface: Job
Actually perform the task. This call blocks until the Job is complete.


fail

protected void fail()
Send totally failed