Method
__init__
(self, stream, name, args=[], kwargs={})
Source from the content-addressed store, hash-verified
| 345 | # noinspection PyMethodOverriding |
| 346 | class GlobalNode(Node): |
| 347 | def __init__(self, stream, name, args=[], kwargs={}): |
| 348 | super(GlobalNode, self).__init__( |
| 349 | stream_spec=stream, |
| 350 | name=name, |
| 351 | incoming_stream_types={OutputStream}, |
| 352 | outgoing_stream_type=OutputStream, |
| 353 | min_inputs=1, |
| 354 | max_inputs=1, |
| 355 | args=args, |
| 356 | kwargs=kwargs, |
| 357 | ) |
| 358 | |
| 359 | |
| 360 | def stream_operator(stream_classes={Stream}, name=None): |
Callers
nothing calls this directly
Tested by
no test coverage detected