- panic(FileStore) - Method in interface net.openhft.chronicle.threads.NotifyDiskLow
-
- panic(FileStore) - Method in class net.openhft.chronicle.threads.NotifyDiskLowLogWarn
-
- parent - Variable in class net.openhft.chronicle.threads.MediumEventLoop
-
- pause() - Method in enum net.openhft.chronicle.threads.BusyPauser
-
Keeps the thread actively busy by executing a very short pause at the CPU level.
- pause(long, TimeUnit) - Method in enum net.openhft.chronicle.threads.BusyPauser
-
- pause() - Method in class net.openhft.chronicle.threads.BusyTimedPauser
-
- pause(long, TimeUnit) - Method in class net.openhft.chronicle.threads.BusyTimedPauser
-
Attempts to pause the thread with a specified timeout.
- pause() - Method in class net.openhft.chronicle.threads.LongPauser
-
Pauses the current thread according to the phased pausing strategy.
- pause(long, TimeUnit) - Method in class net.openhft.chronicle.threads.LongPauser
-
Implementation of the pause method for the LongPauser.
- pause() - Method in class net.openhft.chronicle.threads.MilliPauser
-
Pauses the current thread for the configured duration using millisecond precision.
- pause(long, TimeUnit) - Method in class net.openhft.chronicle.threads.MilliPauser
-
Pauses the current thread for a specified duration in milliseconds.
- pause() - Method in interface net.openhft.chronicle.threads.Pauser
-
Pauses the current thread.
- pause(long, TimeUnit) - Method in interface net.openhft.chronicle.threads.Pauser
-
- pause(long, TimeUnit) - Method in interface net.openhft.chronicle.threads.TimingPauser
-
Pauses but keep tracks of accumulated pause time and throws if timeout exceeded
- pause() - Method in class net.openhft.chronicle.threads.YieldingPauser
-
Pauses the thread by either busy-waiting or yielding, depending on the number of iterations specified by minBusy.
- pause(long, TimeUnit) - Method in class net.openhft.chronicle.threads.YieldingPauser
-
Pauses the thread with a timeout.
- pauser - Variable in class net.openhft.chronicle.threads.MediumEventLoop
-
- Pauser - Interface in net.openhft.chronicle.threads
-
Provides a suite of factory methods for creating various
Pauser objects, each offering different strategies for managing thread execution.
- Pauser.SleepyWarning - Enum in net.openhft.chronicle.threads
-
- PauserMode - Enum in net.openhft.chronicle.threads
-
Provides factory methods for creating various types of
Pauser objects.
- PauserMonitor - Class in net.openhft.chronicle.threads
-
Deprecated.
- PauserMonitor(Pauser, String, int) - Constructor for class net.openhft.chronicle.threads.PauserMonitor
-
Deprecated.
- pauseTimeMS(long) - Method in class net.openhft.chronicle.threads.MilliPauser
-
Sets the pause time to a specified duration in milliseconds.
- pauseTimeMS() - Method in class net.openhft.chronicle.threads.MilliPauser
-
Retrieves the current pause time in milliseconds.
- PERF_ENABLED - Static variable in class net.openhft.chronicle.threads.PauserMonitor
-
Deprecated.
- performClose() - Method in class net.openhft.chronicle.threads.AbstractLifecycleEventLoop
-
- performClose() - Method in class net.openhft.chronicle.threads.BlockingEventLoop
-
- performClose() - Method in class net.openhft.chronicle.threads.EventGroup
-
- performClose() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- performClose() - Method in class net.openhft.chronicle.threads.MonitorEventLoop
-
- performClose() - Method in class net.openhft.chronicle.threads.VanillaEventLoop
-
- performStart() - Method in class net.openhft.chronicle.threads.AbstractLifecycleEventLoop
-
Implement whatever this event loop needs to start, will only
ever be called once
- performStart() - Method in class net.openhft.chronicle.threads.BlockingEventLoop
-
- performStart() - Method in class net.openhft.chronicle.threads.EventGroup
-
Starts the event loop and waits for the core (or monitor) event loop thread to start before returning
(or timing out)
- performStart() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- performStart() - Method in class net.openhft.chronicle.threads.MonitorEventLoop
-
- performStopFromNew() - Method in class net.openhft.chronicle.threads.AbstractLifecycleEventLoop
-
Implement a stop from
EventLoopLifecycle.NEW state, should block until all
handlers have had
EventHandler.loopFinished() called.
- performStopFromNew() - Method in class net.openhft.chronicle.threads.BlockingEventLoop
-
- performStopFromNew() - Method in class net.openhft.chronicle.threads.EventGroup
-
- performStopFromNew() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- performStopFromNew() - Method in class net.openhft.chronicle.threads.MonitorEventLoop
-
- performStopFromStarted() - Method in class net.openhft.chronicle.threads.AbstractLifecycleEventLoop
-
Implement a stop from
EventLoopLifecycle.STARTED state, should block until all
handlers have completed their final iteration and had
EventHandler.loopFinished() called.
- performStopFromStarted() - Method in class net.openhft.chronicle.threads.BlockingEventLoop
-
- performStopFromStarted() - Method in class net.openhft.chronicle.threads.EventGroup
-
- performStopFromStarted() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- performStopFromStarted() - Method in class net.openhft.chronicle.threads.MonitorEventLoop
-
- pollDiskSpace(File) - Method in enum net.openhft.chronicle.threads.DiskSpaceMonitor
-
- priority() - Method in class net.openhft.chronicle.threads.PauserMonitor
-
Deprecated.
- priority() - Method in interface net.openhft.chronicle.threads.ThreadMonitor
-
- priority() - Method in class net.openhft.chronicle.threads.TimedEventHandler
-
- thread() - Method in interface net.openhft.chronicle.threads.CoreEventLoop
-
- thread - Variable in class net.openhft.chronicle.threads.MediumEventLoop
-
- thread() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- threadGroupPrefix() - Static method in enum net.openhft.chronicle.threads.Threads
-
- ThreadHolder - Interface in net.openhft.chronicle.threads
-
- ThreadMonitor - Interface in net.openhft.chronicle.threads
-
- ThreadMonitors - Enum in net.openhft.chronicle.threads
-
- Threads - Enum in net.openhft.chronicle.threads
-
- TIME_TAKEN_WARN_THRESHOLD_US - Static variable in enum net.openhft.chronicle.threads.DiskSpaceMonitor
-
- timedAction() - Method in class net.openhft.chronicle.threads.TimedEventHandler
-
Perform an action
- timedBusy() - Static method in interface net.openhft.chronicle.threads.Pauser
-
Creates a
TimingPauser that keeps the thread busy but also incorporates timed waits.
- TimedEventHandler - Class in net.openhft.chronicle.threads
-
- TimedEventHandler() - Constructor for class net.openhft.chronicle.threads.TimedEventHandler
-
- TimeoutPauser - Class in net.openhft.chronicle.threads
-
Deprecated.
- TimeoutPauser(int) - Constructor for class net.openhft.chronicle.threads.TimeoutPauser
-
Deprecated.
first it will busy wait, then it will yield.
- timePaused() - Method in enum net.openhft.chronicle.threads.BusyPauser
-
Always returns 0 as BusyPauser does not track paused time.
- timePaused() - Method in class net.openhft.chronicle.threads.BusyTimedPauser
-
Always returns 0 as this pauser does not actually track total pause time.
- timePaused() - Method in class net.openhft.chronicle.threads.LongPauser
-
Returns the total time that the thread has been paused, in milliseconds.
- timePaused() - Method in class net.openhft.chronicle.threads.MilliPauser
-
Returns the total time that the thread has been paused, measured in milliseconds.
- timePaused() - Method in interface net.openhft.chronicle.threads.Pauser
-
Returns the paused time so far in milliseconds.
- timePaused() - Method in class net.openhft.chronicle.threads.YieldingPauser
-
Returns the total time this pauser has spent yielding, measured in milliseconds.
- timerIntervalMS() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- timerIntervalMS() - Method in class net.openhft.chronicle.threads.VanillaEventLoop
-
- TIMING_ERROR - Static variable in interface net.openhft.chronicle.threads.ThreadHolder
-
- TimingPauser - Interface in net.openhft.chronicle.threads
-
- timingToleranceNS() - Method in interface net.openhft.chronicle.threads.ThreadHolder
-
- toString() - Method in class net.openhft.chronicle.threads.BlockingEventLoop
-
- toString() - Method in enum net.openhft.chronicle.threads.BusyPauser
-
Provides a string representation of this pauser, identifying it as "PauserMode.busy".
- toString() - Method in class net.openhft.chronicle.threads.BusyTimedPauser
-
Provides a string representation for this pauser, identifying it as "PauserMode.timedBusy".
- toString() - Method in class net.openhft.chronicle.threads.LongPauser
-
Provides a human-readable description of the pauser's configuration.
- toString() - Method in class net.openhft.chronicle.threads.MediumEventLoop
-
- toString() - Method in class net.openhft.chronicle.threads.MilliPauser
-
Provides a string representation of this pauser, identifying the configured pause time.
- toString() - Method in class net.openhft.chronicle.threads.MonitorEventLoop
-
- toString() - Method in class net.openhft.chronicle.threads.PauserMonitor
-
Deprecated.
- toString() - Method in class net.openhft.chronicle.threads.VanillaEventLoop
-
- toString() - Method in class net.openhft.chronicle.threads.YieldingPauser
-
Provides a string representation of this pauser, which varies based on the minBusy configuration.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.BusyPauser
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.DiskSpaceMonitor
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.EventLoopLifecycle
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.Pauser.SleepyWarning
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.PauserMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.ThreadMonitors
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.Threads
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.openhft.chronicle.threads.VanillaExecutorFactory
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum net.openhft.chronicle.threads.BusyPauser
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.DiskSpaceMonitor
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.EventLoopLifecycle
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.Pauser.SleepyWarning
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.PauserMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.ThreadMonitors
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.Threads
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.openhft.chronicle.threads.VanillaExecutorFactory
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- VanillaEventLoop - Class in net.openhft.chronicle.threads
-
- VanillaEventLoop(EventLoop, String, Pauser, long, boolean, String, Set<HandlerPriority>) - Constructor for class net.openhft.chronicle.threads.VanillaEventLoop
-
- VanillaExecutorFactory - Enum in net.openhft.chronicle.threads
-