Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


com.oracle.sft.api
Interface MSRPRecorder

All Superinterfaces:
MediaParticipant, Participant, Recorder

public interface MSRPRecorder
extends Recorder

A participant that is used to save the large file and/or to record the message history in a MSRP communication.

Refer MSRPConference to check the usage.


Method Summary
 void start(OutputStream stream)
          Start recording to the specified output stream.
 void start(String stream)
          Start recording to the specified location.
 void start(URI stream)
          Start recording to the specified URI.

 

Methods inherited from interface com.oracle.sft.api.Recorder
getStream

 

Methods inherited from interface com.oracle.sft.api.MediaParticipant
stop

 

Methods inherited from interface com.oracle.sft.api.Participant
addAgent, getAgent, getAgents, getExtension, getJoinable, getName, getNickName, removeAgent, setName, setNickName

 

Method Detail

start

void start(URI stream)
Start recording to the specified URI.
Specified by:
start in interface Recorder
Parameters:
stream - Location where the media has to be recorded.

start

void start(String stream)
Start recording to the specified location. This is equivalent to calling start(URI.create(stream)); The parameter format should be standard File URI format, e.g. "file:///tmp/music.au" for Linux OS or "file:///c:/tmp/music.au" for Windows OS
Specified by:
start in interface Recorder
Parameters:
stream - Location where the media has to be recorded.

start

void start(OutputStream stream)
Start recording to the specified output stream.
Parameters:
stream - The output stream where the media has to be recorded.

Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


Copyright © 2012 Oracle Corporation. All Rights Reserved.