lsl_push_sample_ftp function

  1. @Native<NativeLsl_push_sample_ftp>()
int lsl_push_sample_ftp(
  1. lsl_outlet out,
  2. Pointer<Float> data,
  3. double timestamp,
  4. int pushthrough,
)

@} /** @copydoc lsl_push_sample_ft

  • @param pushthrough Whether to push the sample 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_sample_ftp>()
external int lsl_push_sample_ftp(
  lsl_outlet out,
  ffi.Pointer<ffi.Float> data,
  double timestamp,
  int pushthrough,
);