Class SerializableIr
- java.lang.Object
-
- org.apache.beam.sdk.extensions.sbe.SerializableIr
-
- All Implemented Interfaces:
java.io.Serializable
@Experimental(SCHEMAS) public final class SerializableIr extends java.lang.Object implements java.io.SerializableA wrapper aroundIrthat fulfils Java'sSerializablecontract.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SerializableIrfromIr(uk.co.real_logic.sbe.ir.Ir ir)Creates a new instance fromir.uk.co.real_logic.sbe.ir.Irir()Returns the underlyingIr.
-
-
-
Method Detail
-
fromIr
public static SerializableIr fromIr(uk.co.real_logic.sbe.ir.Ir ir)
Creates a new instance fromir.- Parameters:
ir- theIrto create the instance from- Returns:
- a new
SerializableIrthat containsir
-
ir
public uk.co.real_logic.sbe.ir.Ir ir()
Returns the underlyingIr.Modifications made to the returned value, such as through
Ir.addMessage(long, List), will be reflected in this instance.- Returns:
- the underlying
Ir
-
-