lsl_create_continuous_resolver function

  1. @Native<NativeLsl_create_continuous_resolver>()
lsl_continuous_resolver lsl_create_continuous_resolver(
  1. double forget_after
)

Construct a new #lsl_continuous_resolver that resolves all streams on the network.

This is analogous to the functionality offered by the free function lsl_resolve_all(). @param forget_after When a stream is no longer visible on the network (e.g. because it was shut down), this is the time in seconds after which it is no longer reported by the resolver.

The recommended default value is 5.0.

Implementation

@ffi.Native<NativeLsl_create_continuous_resolver>()
external lsl_continuous_resolver lsl_create_continuous_resolver(
  double forget_after,
);