Class Materialized<K, V, S>
public class Materialized<K, V, S> : JVMBridgeBase<Materialized<K, V, S>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition where S : IStateStore, new()
Type Parameters
K
V
S
- Inheritance
-
JVMBridgeBase<Materialized<K, V, S>>Materialized<K, V, S>
- Implements
- Inherited Members
-
JVMBridgeBase<Materialized<K, V, S>>.SExecuteWithSignature<TReturn>(string, string, params object[])
Constructors
Materialized()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Materialized()
Materialized(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
public Materialized(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
As(String)
public static Materialized As(String arg0)
Parameters
Returns
As(DslStoreSuppliers)
public static Materialized As(DslStoreSuppliers arg0)
Parameters
Returns
As(KeyValueBytesStoreSupplier)
public static Materialized<K, V, KeyValueStore<Bytes, byte[]>> As(KeyValueBytesStoreSupplier arg0)
Parameters
Returns
- Materialized<K, V, KeyValueStore<Bytes, byte[]>>
As(SessionBytesStoreSupplier)
public static Materialized<K, V, SessionStore<Bytes, byte[]>> As(SessionBytesStoreSupplier arg0)
Parameters
Returns
- Materialized<K, V, SessionStore<Bytes, byte[]>>
As(WindowBytesStoreSupplier)
public static Materialized<K, V, WindowStore<Bytes, byte[]>> As(WindowBytesStoreSupplier arg0)
Parameters
Returns
- Materialized<K, V, WindowStore<Bytes, byte[]>>
With(Serde<K>, Serde<V>)
public static Materialized With(Serde<K> arg0, Serde<V> arg1)
Parameters
Returns
WithCachingDisabled()
public Materialized WithCachingDisabled()
Returns
WithCachingEnabled()
public Materialized WithCachingEnabled()
Returns
WithKeySerde(Serde<K>)
public Materialized WithKeySerde(Serde<K> arg0)
Parameters
Returns
WithLoggingDisabled()
public Materialized WithLoggingDisabled()
Returns
WithLoggingEnabled(Map<String, String>)
public Materialized WithLoggingEnabled(Map<String, String> arg0)
Parameters
Returns
WithRetention(Duration)
public Materialized WithRetention(Duration arg0)
Parameters
Returns
Exceptions
WithStoreType(DslStoreSuppliers)
public Materialized WithStoreType(DslStoreSuppliers arg0)
Parameters
Returns
Exceptions
WithValueSerde(Serde<V>)
public Materialized WithValueSerde(Serde<V> arg0)
Parameters
Returns
Operators
implicit operator Materialized(Materialized<K, V, S>)
Converter from Materialized<K, V, S> to Materialized
public static implicit operator Materialized(Materialized<K, V, S> t)
Parameters
t
Materialized<K, V, S>