Inject Into Source

source.inject(p, func, …)

The inject method allows a function to be inserted into the source's protocol stream - for handling direct communication with the connected device.

Once the function has been executed, it is unchained from the list of injectors.

Parameter Type Description
p table Protocol table
func function The function to call
parameters

e.g.

sources[1]:inject( function(p) p:write('Hello!') end )

sources[1]:inject( myinjectfn, 'A', 'B', 123)
-- will call myinjectfn(p, 'A', 'B', 123)