Class WindowStore<K, V>
public class WindowStore<K, V> : JVMBridgeBase<WindowStore<K, V>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBaseInstance>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeBaseInstance, IJVMBridgeDefinition, IWindowStore<K, V>, IStateStore, IReadOnlyWindowStore<K, V>
Type Parameters
KV
- Inheritance
-
JVMBridgeBase<WindowStore<K, V>>WindowStore<K, V>
- Implements
-
IWindowStore<K, V>IReadOnlyWindowStore<K, V>
- Derived
Constructors
WindowStore(IJVMBridgeBaseInitializer)
Initializer used internally by JCOBridge. Do not use directly.
[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public WindowStore(IJVMBridgeBaseInitializer initializer)
Parameters
initializerIJVMBridgeBaseInitializer
Properties
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements java.lang.AutoCloseable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
Methods
BackwardFetch(K, Instant, Instant)
public WindowStoreIterator<V> BackwardFetch(K arg0, Instant arg1, Instant arg2)
Parameters
Returns
Exceptions
BackwardFetch(K, long, long)
public WindowStoreIterator<V> BackwardFetch(K arg0, long arg1, long arg2)
Parameters
Returns
BackwardFetch(K, K, Instant, Instant)
public KeyValueIterator<Windowed<K>, V> BackwardFetch(K arg0, K arg1, Instant arg2, Instant arg3)
Parameters
Returns
Exceptions
BackwardFetch(K, K, long, long)
public KeyValueIterator<Windowed<K>, V> BackwardFetch(K arg0, K arg1, long arg2, long arg3)
Parameters
Returns
BackwardFetchAll(Instant, Instant)
public KeyValueIterator<Windowed<K>, V> BackwardFetchAll(Instant arg0, Instant arg1)
Parameters
Returns
Exceptions
BackwardFetchAll(long, long)
public KeyValueIterator<Windowed<K>, V> BackwardFetchAll(long arg0, long arg1)
Parameters
Returns
Fetch(K, Instant, Instant)
public WindowStoreIterator<V> Fetch(K arg0, Instant arg1, Instant arg2)
Parameters
Returns
Exceptions
Fetch(K, long, long)
public WindowStoreIterator<V> Fetch(K arg0, long arg1, long arg2)
Parameters
Returns
Fetch(K, K, Instant, Instant)
public KeyValueIterator<Windowed<K>, V> Fetch(K arg0, K arg1, Instant arg2, Instant arg3)
Parameters
Returns
Exceptions
Fetch(K, K, long, long)
public KeyValueIterator<Windowed<K>, V> Fetch(K arg0, K arg1, long arg2, long arg3)
Parameters
Returns
FetchAll(Instant, Instant)
public KeyValueIterator<Windowed<K>, V> FetchAll(Instant arg0, Instant arg1)
Parameters
Returns
Exceptions
FetchAll(long, long)
public KeyValueIterator<Windowed<K>, V> FetchAll(long arg0, long arg1)
Parameters
Returns
Put(K, V, long)
public void Put(K arg0, V arg1, long arg2)
Parameters
Operators
implicit operator StateStore(WindowStore<K, V>)
Converter from WindowStore<K, V> to StateStore
public static implicit operator StateStore(WindowStore<K, V> t)
Parameters
tWindowStore<K, V>
Returns
implicit operator ReadOnlyWindowStore<K, V>(WindowStore<K, V>)
Converter from WindowStore<K, V> to ReadOnlyWindowStore<K, V>
public static implicit operator ReadOnlyWindowStore<K, V>(WindowStore<K, V> t)
Parameters
tWindowStore<K, V>
Returns
- ReadOnlyWindowStore<K, V>
implicit operator WindowStore(WindowStore<K, V>)
Converter from WindowStore<K, V> to WindowStore
public static implicit operator WindowStore(WindowStore<K, V> t)
Parameters
tWindowStore<K, V>