![]() | com.espertech.esper.common.client.util Namespace |
[Missing <summary> documentation for "N:com.espertech.esper.common.client.util"]
Class | Description | |
---|---|---|
![]() | AccessorStyle |
Accessor style defines the methods of a class that are automatically exposed via event property.
|
![]() | CacheReferenceType |
Enum indicating what kind of references are used to store the cache map's keys and values.
|
![]() | ClassForNameProviderConstants | |
![]() | ClassForNameProviderDefault | Default provider for classname lookups. |
![]() | ClassLoaderProviderConstants | |
![]() | ClassLoaderProviderDefault |
Default class loader provider returns the current thread context classloader.
|
![]() | CountMinSketchAgentContext |
Count-min sketch base context object.
|
![]() | CountMinSketchAgentContextAdd |
Count-min sketch context object for add-operations.
|
![]() | CountMinSketchAgentContextEstimate |
Count-min sketch context object for estimate-operations.
|
![]() | CountMinSketchAgentContextFromBytes |
Count-min sketch context object for topk-operations.
|
![]() | CountMinSketchAgentStringUTF16 |
Count-min sketch agent that handles String-type values and uses UTF-16 encoding
to transform strings to byte-array and back.
|
![]() | CountMinSketchAgentStringUTF16Forge |
Count-min sketch agent that handles String-type values and uses UTF-16 encoding
to transform strings to byte-array and back.
|
![]() | CountMinSketchTopK |
ConstantValue object for count-min-sketch top-k.
|
![]() | EventTypeBusModifier |
Modifier that dictates whether an event type allows or does not allow sending events in using one of the send-event
methods.
|
![]() | EventUnderlyingType |
Enumeration of event representation.
|
![]() | EventUnderlyingTypeExtensions | |
![]() | FilterServiceProfile |
Filter service profile.
|
![]() | Locking |
Enumeration of blocking techniques.
|
![]() | NameAccessModifier |
Visibility modifiers for EPL objects.
|
![]() | NameAccessModifierExtensions | |
![]() | PatternObjectType |
Choice for type of pattern object.
|
![]() | StatementProperty |
Provides well-known statement properties.
|
![]() | StatementType | Type of the statement. |
![]() | StatementTypeExtension | |
![]() | ThreadingProfile |
Threading profile.
|
![]() | TimePeriod | |
![]() | TimeSourceType |
Time source type.
|
![]() | UndeployRethrowPolicy |
Enumeration of blocking techniques.
|
Interface | Description | |
---|---|---|
![]() | ClassForNameProvider |
Provider of lookup of a class name resolving into a class.
|
![]() | ClassLoaderProvider |
Provider of a classloader.
|
![]() | CountMinSketchAgent |
For use with Count-min sketch aggregation functions:
The agent implementation encapsulates transformation of value objects to byte-array and back (when needed),
and may override or provide custom behavior.
|
![]() | CountMinSketchAgentForge |
For use with Count-min sketch aggregation functions:
The agent implementation encapsulates transformation of value objects to byte-array and back (when needed),
and may override or provide custom behavior.
This is an extension API and may use internal classes. As such the interface may change between versions.
|
![]() | SafeEnumeratorE |
A concurrency-safe enumerator that iterates over events representing statement results (pull API)
in the face of concurrent event processing by further threads.
In comparison to the regular enumerator, the safe enumerator guarantees correct results even as events are being processed by other threads. The cost is that the enumerator holds one or more locks that must be released via the close method. Any locks are acquired at the time an instance is created. NOTE: An application MUST explicitly dispose the safe enumerator instance to release locks held by the enumerator. The call to the close method should be done in a finally block to make sure the enumerator gets closed. Multiple safe enumerators may be not be used at the same time by different application threads. A single application thread may hold and use multiple safe enumerators however this is discouraged. |