Class Stores
public class Stores : JVMBridgeBase<Stores>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBaseInstance>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeBaseInstance, IJVMBridgeDefinition
- Inheritance
-
Stores
- Implements
Constructors
Stores()
public Stores()
Stores(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 Stores(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
CreatePoolableInstance()
HPA initializer for Stores()
public static Stores CreatePoolableInstance()
Returns
InMemoryKeyValueStore(String)
public static KeyValueBytesStoreSupplier InMemoryKeyValueStore(String arg0)
Parameters
Returns
InMemorySessionStore(String, Duration)
public static SessionBytesStoreSupplier InMemorySessionStore(String arg0, Duration arg1)
Parameters
Returns
InMemoryWindowStore(String, Duration, Duration, bool)
public static WindowBytesStoreSupplier InMemoryWindowStore(String arg0, Duration arg1, Duration arg2, bool arg3)
Parameters
Returns
Exceptions
KeyValueStoreBuilder<K, V>(KeyValueBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<KeyValueStore<K, V>> KeyValueStoreBuilder<K, V>(KeyValueBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0KeyValueBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
Type Parameters
KV
LruMap(String, int)
public static KeyValueBytesStoreSupplier LruMap(String arg0, int arg1)
Parameters
Returns
PersistentKeyValueStore(String)
public static KeyValueBytesStoreSupplier PersistentKeyValueStore(String arg0)
Parameters
Returns
PersistentSessionStore(String, Duration)
public static SessionBytesStoreSupplier PersistentSessionStore(String arg0, Duration arg1)
Parameters
Returns
PersistentTimestampedKeyValueStore(String)
public static KeyValueBytesStoreSupplier PersistentTimestampedKeyValueStore(String arg0)
Parameters
Returns
PersistentTimestampedWindowStore(String, Duration, Duration, bool)
public static WindowBytesStoreSupplier PersistentTimestampedWindowStore(String arg0, Duration arg1, Duration arg2, bool arg3)
Parameters
Returns
Exceptions
PersistentVersionedKeyValueStore(String, Duration)
public static VersionedBytesStoreSupplier PersistentVersionedKeyValueStore(String arg0, Duration arg1)
Parameters
Returns
PersistentVersionedKeyValueStore(String, Duration, Duration)
public static VersionedBytesStoreSupplier PersistentVersionedKeyValueStore(String arg0, Duration arg1, Duration arg2)
Parameters
Returns
PersistentWindowStore(String, Duration, Duration, bool)
public static WindowBytesStoreSupplier PersistentWindowStore(String arg0, Duration arg1, Duration arg2, bool arg3)
Parameters
Returns
Exceptions
SessionStoreBuilder<K, V>(SessionBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<SessionStore<K, V>> SessionStoreBuilder<K, V>(SessionBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0SessionBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
- StoreBuilder<SessionStore<K, V>>
Type Parameters
KV
TimestampedKeyValueStoreBuilder<K, V>(KeyValueBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<TimestampedKeyValueStore<K, V>> TimestampedKeyValueStoreBuilder<K, V>(KeyValueBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0KeyValueBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
Type Parameters
KV
TimestampedWindowStoreBuilder<K, V>(WindowBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<TimestampedWindowStore<K, V>> TimestampedWindowStoreBuilder<K, V>(WindowBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0WindowBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
Type Parameters
KV
VersionedKeyValueStoreBuilder<K, V>(VersionedBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<VersionedKeyValueStore<K, V>> VersionedKeyValueStoreBuilder<K, V>(VersionedBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0VersionedBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
Type Parameters
KV
WindowStoreBuilder<K, V>(WindowBytesStoreSupplier, Serde<K>, Serde<V>)
public static StoreBuilder<WindowStore<K, V>> WindowStoreBuilder<K, V>(WindowBytesStoreSupplier arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
arg0WindowBytesStoreSupplierarg1Serde<K>arg2Serde<V>
Returns
- StoreBuilder<WindowStore<K, V>>
Type Parameters
KV