Create an outgoing stream originating from this node. More nodes may be attached onto the outgoing stream.
(self, label=None, selector=None)
| 207 | self.__incoming_stream_types = incoming_stream_types |
| 208 | |
| 209 | def stream(self, label=None, selector=None): |
| 210 | """Create an outgoing stream originating from this node. |
| 211 | |
| 212 | More nodes may be attached onto the outgoing stream. |
| 213 | """ |
| 214 | return self.__outgoing_stream_type(self, label, upstream_selector=selector) |
| 215 | |
| 216 | def __getitem__(self, item): |
| 217 | """Create an outgoing stream originating from this node; syntactic sugar for ``self.stream(label)``. |
no outgoing calls
no test coverage detected