class MAGES::Recorder::MicrophoneInterpreter::PlaybackCtx

Overview

class PlaybackCtx
{
public:
    // properties

    BlockingCollection FetchResponses;

    // methods

    PlaybackCtx(
        string filename,
        double eventCursor,
        System.Action makeRequest
    );

    void SetRunningOn(bool on);
    void OnAudioFilterRead(float[] data, int channels);
    void Update();
};

Detailed Documentation

Methods

PlaybackCtx(
    string filename,
    double eventCursor,
    System.Action makeRequest
)

Initializes a new instance of the PlaybackCtx class.