Method | Description | |
---|---|---|
Receive ( string msgType, EventHandler |
订阅消息
|
|
RemoveListener ( string msgType, EventHandler |
移除消息的订阅
|
|
Send ( |
发送消息
|
|
Send ( string msgType, object data, object sender = null ) : void |
发送消息
|
public static Receive ( string msgType, EventHandler |
||
msgType | string | 信道ID |
func | EventHandler |
用于处理接收到消息的方法 |
receiver | object | 订阅者对象,默认为null |
isOnce | bool | 是否接收方法只处理一次,默认为false |
return | void |
public static RemoveListener ( string msgType, EventHandler |
||
msgType | string | 信道ID |
func | EventHandler |
需要移除的接收消息处理方法 |
receiver | object | 订阅者对象,默认为null |
return | void |
public static Send ( |
||
args | 消息体对象 | |
sender | object | 发送者对象 |
return | void |
public static Send ( string msgType, object data, object sender = null ) : void | ||
msgType | string | 信道ID |
data | object | 消息数据 |
sender | object | 发送者对象 |
return | void |