Rice Pastry API

Uses of Interface
rice.environment.time.TimeSource

Packages that use TimeSource
org.mpisws.p2p.transport.bandwidthmeasure   
org.mpisws.p2p.transport.direct   
org.mpisws.p2p.transport.liveness   
org.mpisws.p2p.transport.nat   
org.mpisws.p2p.transport.peerreview.replay.record   
org.mpisws.p2p.transport.rendezvous   
rice.environment   
rice.environment.logging   
rice.environment.logging.file   
rice.environment.logging.simple   
rice.environment.processing   
rice.environment.processing.sim   
rice.environment.processing.simple   
rice.environment.time.simple   
rice.environment.time.simulated   
rice.selector   
 

Uses of TimeSource in org.mpisws.p2p.transport.bandwidthmeasure
 

Fields in org.mpisws.p2p.transport.bandwidthmeasure declared as TimeSource
protected  TimeSource BandwidthMeasuringTransportLayer.time
           
 

Uses of TimeSource in org.mpisws.p2p.transport.direct
 

Fields in org.mpisws.p2p.transport.direct declared as TimeSource
protected  TimeSource EventSimulator.timeSource
           
 

Uses of TimeSource in org.mpisws.p2p.transport.liveness
 

Fields in org.mpisws.p2p.transport.liveness declared as TimeSource
protected  TimeSource LivenessTransportLayerImpl.time
           
 

Uses of TimeSource in org.mpisws.p2p.transport.nat
 

Fields in org.mpisws.p2p.transport.nat declared as TimeSource
protected  TimeSource FirewallTLImpl.timeSource
           
 

Uses of TimeSource in org.mpisws.p2p.transport.peerreview.replay.record
 

Constructors in org.mpisws.p2p.transport.peerreview.replay.record with parameters of type TimeSource
RecordSM(java.lang.String instance, TimeSource realTime, DirectTimeSource simTime, LogManager log, RandomSource rs)
           
 

Uses of TimeSource in org.mpisws.p2p.transport.rendezvous
 

Fields in org.mpisws.p2p.transport.rendezvous declared as TimeSource
protected  TimeSource RendezvousTransportLayerImpl.time
           
 

Uses of TimeSource in rice.environment
 

Methods in rice.environment that return TimeSource
protected  TimeSource Environment.cloneTimeSource(LogManager lman)
           
static TimeSource Environment.generateDefaultTimeSource()
           
 TimeSource Environment.getTimeSource()
           
 

Methods in rice.environment with parameters of type TimeSource
protected  SelectorManager Environment.cloneSelectorManager(java.lang.String prefix, TimeSource ts, RandomSource rs, LogManager lman, boolean cloneSelector)
           
static LogManager Environment.generateDefaultLogManager(TimeSource time, Parameters params)
           
static SelectorManager Environment.generateDefaultSelectorManager(TimeSource time, LogManager logging, RandomSource randomSource)
           
 

Constructors in rice.environment with parameters of type TimeSource
Environment(SelectorManager sm, Processor proc, RandomSource rs, TimeSource time, LogManager lm, Parameters params, ExceptionStrategy strategy)
          Constructor.
 

Uses of TimeSource in rice.environment.logging
 

Fields in rice.environment.logging declared as TimeSource
protected  TimeSource AbstractLogManager.time
           
 

Methods in rice.environment.logging that return TimeSource
 TimeSource AbstractLogManager.getTimeSource()
           
 

Methods in rice.environment.logging with parameters of type TimeSource
 LogManager CloneableLogManager.clone(java.lang.String detail, TimeSource ts)
           
 

Constructors in rice.environment.logging with parameters of type TimeSource
AbstractLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params, java.lang.String prefix, java.lang.String df)
           
 

Uses of TimeSource in rice.environment.logging.file
 

Constructors in rice.environment.logging.file with parameters of type TimeSource
FileLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params)
           
FileLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params, java.lang.String prefix)
           
FileLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params, java.lang.String prefix, java.lang.String filePrefix, java.lang.String fileSuffix, java.lang.String dateFormat)
           
FileLogManager(TimeSource timeSource, Parameters params)
          Convienience constructor.
RotatingLogManager(TimeSource timeSource, Parameters params)
           
RotatingLogManager(TimeSource timeSource, Parameters params, java.lang.String prefix, java.lang.String dateFormat)
           
 

Uses of TimeSource in rice.environment.logging.simple
 

Methods in rice.environment.logging.simple that return TimeSource
 TimeSource SimpleLogManager.getTimeSource()
           
 

Methods in rice.environment.logging.simple with parameters of type TimeSource
 LogManager SimpleLogManager.clone(java.lang.String detail, TimeSource ts)
           
 

Constructors in rice.environment.logging.simple with parameters of type TimeSource
SimpleLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params)
          Constructor.
SimpleLogManager(java.io.PrintStream stream, TimeSource timeSource, Parameters params, java.lang.String prefix, java.lang.String dateFormat)
           
SimpleLogManager(TimeSource timeSource, Parameters params)
          Convienience constructor.
 

Uses of TimeSource in rice.environment.processing
 

Methods in rice.environment.processing with parameters of type TimeSource
<R,E extends java.lang.Exception>
Cancellable
Processor.process(Executable<R,E> task, Continuation<R,E> command, int priority, SelectorManager selector, TimeSource ts, LogManager log)
          Schedules a job for processing on the dedicated processing thread.
<R,E extends java.lang.Exception>
Cancellable
Processor.process(Executable<R,E> task, Continuation<R,E> command, SelectorManager selector, TimeSource ts, LogManager log)
          Schedules a job for processing on the dedicated processing thread.
 

Uses of TimeSource in rice.environment.processing.sim
 

Methods in rice.environment.processing.sim with parameters of type TimeSource
<R,E extends java.lang.Exception>
Cancellable
SimProcessor.process(Executable<R,E> task, Continuation<R,E> command, int priority, SelectorManager selector, TimeSource ts, LogManager log)
           
<R,E extends java.lang.Exception>
Cancellable
SimProcessor.process(Executable<R,E> task, Continuation<R,E> command, SelectorManager selector, TimeSource ts, LogManager log)
           
 

Uses of TimeSource in rice.environment.processing.simple
 

Methods in rice.environment.processing.simple with parameters of type TimeSource
<R,E extends java.lang.Exception>
Cancellable
SimpleProcessor.process(Executable<R,E> task, Continuation<R,E> command, int priority, SelectorManager selector, TimeSource ts, LogManager log)
           
<R,E extends java.lang.Exception>
Cancellable
SimpleProcessor.process(Executable<R,E> task, Continuation<R,E> command, SelectorManager selector, TimeSource ts, LogManager log)
          Schedules a job for processing on the dedicated processing thread.
 

Constructors in rice.environment.processing.simple with parameters of type TimeSource
ProcessingRequest(Executable r, Continuation c, int priority, long seq, LogManager logging, TimeSource timeSource, SelectorManager selectorManager)
           
UnifiedProcessor(java.lang.String name, SelectorManager sman, TimeSource ts, LogManager log)
           
 

Uses of TimeSource in rice.environment.time.simple
 

Classes in rice.environment.time.simple that implement TimeSource
 class SimpleTimeSource
          Uses System.currentTimeMillis() to generate time.
 

Uses of TimeSource in rice.environment.time.simulated
 

Classes in rice.environment.time.simulated that implement TimeSource
 class DirectTimeSource
           
 

Uses of TimeSource in rice.selector
 

Fields in rice.selector declared as TimeSource
protected  TimeSource SelectorManager.timeSource
           
 

Methods in rice.selector with parameters of type TimeSource
 boolean TimerTask.execute(TimeSource ts)
          Returns true if should re-insert.
 

Constructors in rice.selector with parameters of type TimeSource
ProfileSelector(java.lang.String instance, TimeSource timeSource, LogManager log)
           
ProfileSelector(java.lang.String instance, TimeSource timeSource, LogManager log, RandomSource rand)
           
ProfileSelector(java.lang.String instance, TimeSource timeSource, LogManager log, RandomSource rand, int lastTaskTime)
           
SelectorManager(java.lang.String instance, TimeSource timeSource, LogManager log)
           
SelectorManager(java.lang.String instance, TimeSource timeSource, LogManager log, RandomSource random)
          Constructor, which is private since there is only one selector per JVM.
 


Rice Pastry API

Copyright © 2001-2005 - Rice Pastry.


Imprint-Dataprotection