Click or drag to resize

com.espertech.esper.common.client.util Namespace

[Missing <summary> documentation for "N:com.espertech.esper.common.client.util"]

Classes
  ClassDescription
Public classAccessorStyle
Accessor style defines the methods of a class that are automatically exposed via event property.
Public classCacheReferenceType
Enum indicating what kind of references are used to store the cache map's keys and values.
Public classClassForNameProviderConstants
Public classClassForNameProviderDefault
Default provider for classname lookups.
Public classClassLoaderProviderConstants
Public classClassLoaderProviderDefault
Default class loader provider returns the current thread context classloader.
Public classCountMinSketchAgentContext
Count-min sketch base context object.
Public classCountMinSketchAgentContextAdd
Count-min sketch context object for add-operations.
Public classCountMinSketchAgentContextEstimate
Count-min sketch context object for estimate-operations.
Public classCountMinSketchAgentContextFromBytes
Count-min sketch context object for topk-operations.
Public classCountMinSketchAgentStringUTF16
Count-min sketch agent that handles String-type values and uses UTF-16 encoding to transform strings to byte-array and back.
Public classCountMinSketchAgentStringUTF16Forge
Count-min sketch agent that handles String-type values and uses UTF-16 encoding to transform strings to byte-array and back.
Public classCountMinSketchTopK
ConstantValue object for count-min-sketch top-k.
Public classEventTypeBusModifier
Modifier that dictates whether an event type allows or does not allow sending events in using one of the send-event methods.
Public classEventUnderlyingType
Enumeration of event representation.
Public classEventUnderlyingTypeExtensions
Public classFilterServiceProfile
Filter service profile.
Public classLocking
Enumeration of blocking techniques.
Public classNameAccessModifier
Visibility modifiers for EPL objects.
Public classNameAccessModifierExtensions
Public classPatternObjectType
Choice for type of pattern object.
Public classStatementProperty
Provides well-known statement properties.
Public classStatementType
Type of the statement.
Public classStatementTypeExtension
Public classThreadingProfile
Threading profile.
Public classTimePeriod
Public classTimeSourceType
Time source type.
Public classUndeployRethrowPolicy
Enumeration of blocking techniques.
Interfaces
  InterfaceDescription
Public interfaceClassForNameProvider
Provider of lookup of a class name resolving into a class.
Public interfaceClassLoaderProvider
Provider of a classloader.
Public interfaceCountMinSketchAgent
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.
Public interfaceCountMinSketchAgentForge
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.

Public interfaceSafeEnumeratorE
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.