runtimepy.channel.event
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/channel/event/__init__.py

A module implementing a channel-event protocol.

 
Package Contents
       
header

 
Classes
       
builtins.object
PrimitiveEvent

 
class PrimitiveEvent(builtins.object)
    PrimitiveEvent(primitive: Union[runtimepy.primitives.int.Int8Primitive, runtimepy.primitives.int.Int16Primitive, runtimepy.primitives.int.Int32Primitive, runtimepy.primitives.int.Int64Primitive, runtimepy.primitives.int.Uint8Primitive, runtimepy.primitives.int.Uint16Primitive, runtimepy.primitives.int.Uint32Primitive, runtimepy.primitives.int.Uint64Primitive, runtimepy.primitives.float.HalfPrimitive, runtimepy.primitives.float.FloatPrimitive, runtimepy.primitives.float.DoublePrimitive, runtimepy.primitives.bool.BooleanPrimitive], identifier: int) -> None
 
A class implementing a simple channel-even interface.
 
  Methods defined here:
__init__(self, primitive: Union[runtimepy.primitives.int.Int8Primitive, runtimepy.primitives.int.Int16Primitive, runtimepy.primitives.int.Int32Primitive, runtimepy.primitives.int.Int64Primitive, runtimepy.primitives.int.Uint8Primitive, runtimepy.primitives.int.Uint16Primitive, runtimepy.primitives.int.Uint32Primitive, runtimepy.primitives.int.Uint64Primitive, runtimepy.primitives.float.HalfPrimitive, runtimepy.primitives.float.FloatPrimitive, runtimepy.primitives.float.DoublePrimitive, runtimepy.primitives.bool.BooleanPrimitive], identifier: int) -> None
Initialize this instance.
registered(self, stream: <class 'BinaryIO'>, flush: bool = False, channel: runtimepy.metrics.channel.ChannelMetrics = None, force: bool = False) -> Iterator[NoneType]
Register a stream as a managed context.
set_min_period(self, min_period_s: float) -> None
Set a minimum period.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        AnyPrimitive = typing.Union[runtimepy.primitives.int.Int8Primit...tive, runtimepy.primitives.bool.BooleanPrimitive]
Iterator = typing.Iterator