Class Joined<K, VLeft, VRight>
public class Joined<K, VLeft, VRight> : JVMBridgeBase<Joined<K, VLeft, VRight>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Type Parameters
K
VLeft
VRight
- Inheritance
-
JVMBridgeBase<Joined<K, VLeft, VRight>>Joined<K, VLeft, VRight>
- Implements
- Inherited Members
-
JVMBridgeBase<Joined<K, VLeft, VRight>>.SExecuteWithSignature(Type, string, string, params object[])JVMBridgeBase<Joined<K, VLeft, VRight>>.SExecute<TReturn, TConverter>(Type, string, params object[])
Constructors
Joined()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Joined()
Joined(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 Joined(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 Joined<K, VLeft, VRight> As(String arg0)
Parameters
Returns
KeySerde(Serde<K>)
public static Joined<K, VLeft, VRight> KeySerde(Serde<K> arg0)
Parameters
Returns
OtherValueSerde(Serde<VRight>)
public static Joined<K, VLeft, VRight> OtherValueSerde(Serde<VRight> arg0)
Parameters
Returns
ValueSerde(Serde<VLeft>)
public static Joined<K, VLeft, VRight> ValueSerde(Serde<VLeft> arg0)
Parameters
Returns
With(Serde<K>, Serde<VLeft>, Serde<VRight>)
public static Joined<K, VLeft, VRight> With(Serde<K> arg0, Serde<VLeft> arg1, Serde<VRight> arg2)
Parameters
Returns
With(Serde<K>, Serde<VLeft>, Serde<VRight>, String)
public static Joined<K, VLeft, VRight> With(Serde<K> arg0, Serde<VLeft> arg1, Serde<VRight> arg2, String arg3)
Parameters
Returns
With(Serde<K>, Serde<VLeft>, Serde<VRight>, String, Duration)
public static Joined<K, VLeft, VRight> With(Serde<K> arg0, Serde<VLeft> arg1, Serde<VRight> arg2, String arg3, Duration arg4)
Parameters
Returns
WithGracePeriod(Duration)
public Joined<K, VLeft, VRight> WithGracePeriod(Duration arg0)
Parameters
Returns
WithKeySerde(Serde<K>)
public Joined<K, VLeft, VRight> WithKeySerde(Serde<K> arg0)
Parameters
Returns
WithOtherValueSerde(Serde<VRight>)
public Joined<K, VLeft, VRight> WithOtherValueSerde(Serde<VRight> arg0)
Parameters
Returns
WithValueSerde(Serde<VLeft>)
public Joined<K, VLeft, VRight> WithValueSerde(Serde<VLeft> arg0)
Parameters
Returns
Operators
implicit operator Joined(Joined<K, VLeft, VRight>)
Converter from Joined<K, VLeft, VRight> to Joined
public static implicit operator Joined(Joined<K, VLeft, VRight> t)
Parameters
t
Joined<K, VLeft, VRight>