zhangmeng
2019-05-16 e6cfa59401d45f74a2815d33b62e22e02765d94e
提交 | 用户 | age
9d4b12 1 package deliver
Z 2
3 // Mode is the numeric abstraction to the various protocols or patterns
4 // that Mangos supports.
5 type Mode int
6
7 // Constants for protocols.
8 const (
9     ModeStart = iota
10     PushPull
11     PubSub
12     ReqRep
13     SurvResp
14     Bus
15     Pair
16     ModeNNG
17     ModeEnd
18 )