| Package | Description |
|---|---|
| net.openhft.chronicle.threads |
| Modifier and Type | Interface and Description |
|---|---|
interface |
TimingPauser
Marker interface to show we support
TimingPauser.pause(long, TimeUnit) |
| Modifier and Type | Class and Description |
|---|---|
class |
BusyPauser |
class |
BusyTimedPauser
Similar to
BusyPauser but also supporting TimingPauser |
class |
LongPauser |
class |
MilliPauser |
class |
TimeoutPauser |
class |
YieldingPauser |
| Modifier and Type | Field and Description |
|---|---|
protected Pauser |
MediumEventLoop.pauser |
| Modifier and Type | Method and Description |
|---|---|
static @NotNull Pauser |
Pauser.busy()
A busy pauser which never waits
|
static Pauser |
Pauser.millis(int minMillis,
int maxMillis)
A pauser which does not busy spin or yield, it just pauses with a backoff
|
static Pauser |
Pauser.yielding()
Yielding pauser.
|
static Pauser |
Pauser.yielding(int minBusy) |
| Modifier and Type | Method and Description |
|---|---|
EventGroupBuilder |
EventGroupBuilder.withConcurrentPauser(Pauser concurrentPauser)
Deprecated.
Use
EventGroupBuilder.withConcurrentPauserSupplier(Supplier) instead - to be removed in .25 |
EventGroupBuilder |
EventGroupBuilder.withPauser(Pauser pauser) |
EventGroupBuilder |
EventGroupBuilder.withReplicationPauser(Pauser replicationPauser) |
| Constructor and Description |
|---|
BlockingEventLoop(@NotNull net.openhft.chronicle.core.threads.EventLoop parent,
@NotNull String name,
@NotNull Pauser pauser)
Deprecated.
to be removed in x.25
|
EventGroup(boolean daemon,
@NotNull Pauser pauser,
Pauser replicationPauser,
String binding,
String bindingReplication,
String name,
int concThreadsNum,
String concBinding,
@NotNull Pauser concPauser,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities)
Deprecated.
Use
EventGroup.builder() - to be removed in 2.25 |
EventGroup(boolean daemon,
@NotNull Pauser pauser,
Pauser replicationPauser,
String binding,
String bindingReplication,
String name,
int concThreadsNum,
String concBinding,
@NotNull Pauser concPauser,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities)
Deprecated.
Use
EventGroup.builder() - to be removed in 2.25 |
EventGroup(boolean daemon,
@NotNull Pauser pauser,
Pauser replicationPauser,
String binding,
String bindingReplication,
String name,
int concThreadsNum,
String concBinding,
@NotNull Pauser concPauser,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities)
Deprecated.
Use
EventGroup.builder() - to be removed in 2.25 |
EventGroup(boolean daemon,
@NotNull Pauser pauser,
Pauser replicationPauser,
String binding,
String bindingReplication,
@NotNull String name,
int concThreadsNum,
String concBinding,
@NotNull Supplier<Pauser> concPauserSupplier,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities,
@NotNull Supplier<Pauser> blockingPauserSupplier) |
EventGroup(boolean daemon,
@NotNull Pauser pauser,
Pauser replicationPauser,
String binding,
String bindingReplication,
@NotNull String name,
int concThreadsNum,
String concBinding,
@NotNull Supplier<Pauser> concPauserSupplier,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities,
@NotNull Supplier<Pauser> blockingPauserSupplier) |
MediumEventLoop(@Nullable net.openhft.chronicle.core.threads.EventLoop parent,
String name,
Pauser pauser,
boolean daemon,
String binding) |
MonitorEventLoop(net.openhft.chronicle.core.threads.EventLoop parent,
Pauser pauser) |
MonitorEventLoop(net.openhft.chronicle.core.threads.EventLoop parent,
String name,
Pauser pauser) |
PauserMonitor(Pauser pauser,
String description,
int seconds)
Deprecated.
|
VanillaEventLoop(@Nullable net.openhft.chronicle.core.threads.EventLoop parent,
String name,
Pauser pauser,
long timerIntervalMS,
boolean daemon,
String binding,
Set<net.openhft.chronicle.core.threads.HandlerPriority> priorities) |
Copyright © 2023. All rights reserved.