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
-
JVMBridgeBaseJVMBridgeBase<WindowStore<K, V>>WindowStore<K, V>
- Implements
-
IJVMBridgeCoreIJVMBridgeBaseStaticIJVMBridgeBaseIJVMBridgeDefinitionIWindowStore<K, V>IReadOnlyWindowStore<K, V>
- Derived
- Inherited Members
-
JVMBridgeBase<WindowStore<K, V>>.IsAssignableFrom(IJavaType)JVMBridgeBase<WindowStore<K, V>>.IsAssignableFrom<T>()JVMBridgeBase<WindowStore<K, V>>.Execute<T>(params T[])JVMBridgeBase<WindowStore<K, V>>.DynBridgeClazzJVMBridgeBase<WindowStore<K, V>>.BridgeClazzJVMBridgeBase.RuntimeClassNameOf<T>()JVMBridgeBase.ClassNameOf<T>()JVMBridgeBase.ClassOf<T>()JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)JVMBridgeBase.Wraps<TNewClass>(IJavaObject)JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)JVMBridgeBase.MonitorEnter()JVMBridgeBase.MonitorExit()JVMBridgeBase.IsInstanceOf(IJavaType)JVMBridgeBase.IsInstanceOf<T>()JVMBridgeBase.RuntimeIsInstanceOf<T>()JVMBridgeBase.CastTo<TNewClass>()JVMBridgeBase.CastDirect<TNewClass>()JVMBridgeBase.Dispose()JVMBridgeBase.ToString()JVMBridgeBase.GetHashCode()JVMBridgeBase.Notify()JVMBridgeBase.NotifyAll()JVMBridgeBase.Wait()JVMBridgeBase.IExecuteWithSignature<TNewClass, TReturn, TConverter>(string, string, params object[])JVMBridgeBase.DynBridgeInstanceJVMBridgeBase.BridgeInstanceJVMBridgeBase.IsBridgeListener
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
https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeBase_BridgeClassName.htm
public override string BridgeClassName { get; }
Property Value
IsBridgeAbstract
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
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>