当前位置: 首页>>代码示例>>Java>>正文


Java DesktopStreamAPI类代码示例

本文整理汇总了Java中tv.twitch.broadcast.DesktopStreamAPI的典型用法代码示例。如果您正苦于以下问题:Java DesktopStreamAPI类的具体用法?Java DesktopStreamAPI怎么用?Java DesktopStreamAPI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DesktopStreamAPI类属于tv.twitch.broadcast包,在下文中一共展示了DesktopStreamAPI类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: BroadcastController

import tv.twitch.broadcast.DesktopStreamAPI; //导入依赖的package包/类
public BroadcastController()
{
    this.field_152879_o = BroadcastController.BroadcastState.Uninitialized;
    this.field_152880_p = null;
    this.field_152881_q = null;
    this.field_152882_r = null;
    this.field_152883_s = new IngestList(new IngestServer[0]);
    this.field_152884_t = null;
    this.field_152885_u = new AuthToken();
    this.field_152886_v = new ChannelInfo();
    this.field_152887_w = new UserInfo();
    this.field_152888_x = new StreamInfo();
    this.field_152889_y = new ArchivingState();
    this.field_152890_z = 0L;
    this.field_152860_A = null;
    this.field_152872_h = new Core(new StandardCoreAPI());
    this.field_152873_i = new Stream(new DesktopStreamAPI());
}
 
开发者ID:xtrafrancyz,项目名称:Cauldron,代码行数:19,代码来源:BroadcastController.java

示例2: BroadcastController

import tv.twitch.broadcast.DesktopStreamAPI; //导入依赖的package包/类
public BroadcastController()
{
    this.field_152872_h = Core.getInstance();

    if (Core.getInstance() == null)
    {
        this.field_152872_h = new Core(new StandardCoreAPI());
    }

    this.field_152873_i = new Stream(new DesktopStreamAPI());
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:12,代码来源:BroadcastController.java


注:本文中的tv.twitch.broadcast.DesktopStreamAPI类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。