IoGame

LiCheng2022年9月13日小于 1 分钟

IoGame

介绍

  • 一个游戏框架

官网

Api

通知

// 严格顺序的 广播上下文
var broadcastContext = BrokerClientHelper.me().getBroadcastOrderContext();

// 默认的广播上下文
var broadcastContext = BrokerClientHelper.me().getBroadcastContext();


... ... 省略部分代码
// 得到严格顺序的广播上下文
var broadcastOrderContext = BrokerClientHelper.getBroadcastOrderContext();

// 使用示例
for (int i = 0; i < 10; i++) {
    BarHelloPb helloPb = new BarHelloPb();
    helloPb.amount = i;

    broadcastOrderContext.broadcastOrder(cmdInfo, helloPb);
}