Example usage for com.google.gwt.tok.client PublishProperties setPublishAudio

List of usage examples for com.google.gwt.tok.client PublishProperties setPublishAudio

Introduction

In this page you can find the example usage for com.google.gwt.tok.client PublishProperties setPublishAudio.

Prototype

public final native void setPublishAudio(Boolean publishAudio) ;

Source Link

Document

Whether to initially publish audio for the stream (default: true)

Usage

From source file:com.google.gwt.tok.test.client.widget.PublisherPanel.java

@UiHandler("publishButton")
protected void onPublishClicked(ClickEvent event) {
    if (publishing) {
        EVENT_BUS.fireEvent(new UnpublishEvent());
    } else {//from   ww w  .j a v a  2  s . c  o  m
        PublishProperties publishProperties = PublishProperties.get();
        publishProperties.setHeight(Integer.valueOf(height.getValue()));
        publishProperties.setWidth(Integer.valueOf(width.getValue()));
        publishProperties.setMicrophoneGain(Integer.valueOf(microphoneGain.getValue()));
        publishProperties.setMirror(mirror.getValue());
        publishProperties.setPublishAudio(publishAudio.getValue());
        publishProperties.setPublishVideo(publishVideo.getValue());

        EVENT_BUS.fireEvent(new PublishEvent(publisherDiv.getId(), publishProperties));
    }
}