Class WindowStore<K, V>
public class WindowStore<K, V> : JVMBridgeBase<WindowStore<K, V>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IWindowStore<K, V>, IStateStore, IReadOnlyWindowStore<K, V>
Type Parameters
K
V
- Inheritance
-
JVMBridgeBase<WindowStore<K, V>>WindowStore<K, V>
- Implements
-
IWindowStore<K, V>IReadOnlyWindowStore<K, V>
- Derived
- Inherited Members
Constructors
WindowStore()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
[Obsolete("WindowStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public WindowStore()
WindowStore(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
[Obsolete("WindowStore class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public WindowStore(params object[] args)
Parameters
args
object[]
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 Closeable
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
t
WindowStore<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
t
WindowStore<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
t
WindowStore<K, V>