Changelog
0.8.0-beta1 (January 18th 2017)
Network.stop
connect
and disconnect
events. Instead, connect
and disconnect
are injected as needed, but only for subscribers of the legacy eventsNOFLO_FATAL_DEPRECATED
environment variable. These include:
noflo.AsyncComponent
: should be ported to Process APInoflo.helpers.MapComponent
: should be ported to Process APInoflo.ArrayPort
: should be ported to noflo.In/OutPort with addressable: true
noflo.Port
: should be ported to noflo.In/OutPortNetwork.start
or Network.stop
without a callbacknoflo.InPort
process
option: should be ported to Process API or use the handle
optionnoflo.InPort
receive
method: replaced by the get
methodnoflo.InPort
contains
method: replaced by the has
methodnoflo.Graph
exports: use specific inport or outport insteadscope
support to WirePattern
to make WirePattern
components more concurrency-friendlyreceiveStreams
option from WirePattern
hasStream
checks if an input buffer contains a complete stream (matching brackets and data, or only data), getStream
returns a complete stream of packets. These require forwardBrackets
to be disabled for the port.input.getData()
in Process API has been changed to fetch only packets of data
type skipping and dropping brackets inbetweennoflo.IP
typegetActiveProcesses()
methodChangelog
0.7.8 (June 10th 2016)
output.send
if there is only one non-error outportChangelog
0.7.7 (June 8th 2016)
input.has
now accepts a validation callback function as the last argument. All packets in buffer will be passed to this function, and has
will return false only if something returns true for each port specifieddropEmptyBrackets
option which was conflicting with asynchronous components. This results into empty brackets being forwarded to error
outport, so make sure error handling components don't make false alerts on those.Changelog
0.7.6 (June 2nd 2016)
stream
datatype in ports, allowing streams to be passed as data packetsChangelog
0.7.5 (May 2nd 2016)
forwardBrackets
option. Enabled from in
port to out
and error
ports by default.dropEmptyBrackets
list (defaults to ['error']
).output.pass()
instead of output.sendDone()
.Changelog
0.7.3 (April 7th 2016)
start
event, not from initializationChangelog
0.7.2 (April 1st 2016)
input.getData()
crash on ports which have no packets yet