lsl_push_chunk_ftnp function

  1. @Native<NativeLsl_push_chunk_ftnp>()
int lsl_push_chunk_ftnp(
  1. lsl_outlet out,
  2. Pointer<Float> data,
  3. int data_elements,
  4. Pointer<Double> timestamps,
  5. int pushthrough,
)

@copydoc lsl_push_chunk_ftn @param pushthrough Whether to push the chunk through to the receivers instead of buffering it with subsequent samples. Note that the chunk_size, if specified at outlet construction, takes precedence over the pushthrough flag. @{

Implementation

@ffi.Native<NativeLsl_push_chunk_ftnp>()
external int lsl_push_chunk_ftnp(
  lsl_outlet out,
  ffi.Pointer<ffi.Float> data,
  int data_elements,
  ffi.Pointer<ffi.Double> timestamps,
  int pushthrough,
);