Class OVOutlet<T>
Base Inlet for OpenViBE Link.
Assembly: cs.temp.dll.dll
Syntax
public abstract class OVOutlet<T> : MonoBehaviour
Type Parameters
Fields
info
Declaration
protected liblsl.StreamInfo info
Field Value
outlet
Declaration
protected liblsl.StreamOutlet outlet
Field Value
samples
Declaration
Field Value
streamType
Declaration
protected OVOutlet<T>.StreamTypes streamType
Field Value
Properties
ChannelCount
Declaration
public int ChannelCount { get; }
Property Value
StreamName
Declaration
public string StreamName { get; }
Property Value
Methods
ForceUpdate(T[])
ForceUpdate is called when it's needed.
Declaration
public void ForceUpdate(T[] input)
Parameters
Type |
Name |
Description |
T[] |
input |
The samples to push.
|
Process(T[])
Override this method in the subclass to specify what should happen when samples are available.
Declaration
protected abstract void Process(T[] input)
Parameters
Type |
Name |
Description |
T[] |
input |
The Incomming Sample.
|
PushSamples()
Declaration
protected abstract void PushSamples()