public interface

RecordingListener

sg.com.temasys.skylink.sdk.listener.RecordingListener
Known Indirect Subclasses

Class Overview

Listener comprises of callbacks for recording actions from Skylink Media Relay

Summary

Public Methods
abstract void onReceiveRecordingError(int errorCode, String description, String recordingId)
This is triggered when a recording error occurs.
abstract void onStartRecording(String recordingId)
Indicates that recording has started for this room.
abstract void onStopRecording(String recordingId)
Indicates that recording has stopped for this room.

Public Methods

public abstract void onReceiveRecordingError (int errorCode, String description, String recordingId)

This is triggered when a recording error occurs.

Parameters
errorCode Errors Integer error code of the recording error encountered.
description Description of the recording error encountered.
recordingId Id of Recording session this message is about.

public abstract void onStartRecording (String recordingId)

Indicates that recording has started for this room.

Parameters
recordingId Id of Recording session this message is about.

public abstract void onStopRecording (String recordingId)

Indicates that recording has stopped for this room.

Parameters
recordingId Id of Recording session this message is about.