本文整理汇总了Golang中github.com/skycoin/skycoin/src/aether.Connection类的典型用法代码示例。如果您正苦于以下问题:Golang Connection类的具体用法?Golang Connection怎么用?Golang Connection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Connection类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: onGnetDisconnect
// Triggered when an gnet.Connection terminates. Disconnect events are not
// pushed to a separate channel, because disconnects are already processed
// by a queue in the daemon.Run() select{}.
func (self *Daemon) onGnetDisconnect(c *gnet.Connection,
reason gnet.DisconnectReason) {
a := c.Addr()
logger.Info("%s disconnected because: %v", a, reason)
duration, exists := BlacklistOffenses[reason]
if exists {
self.Peers.Peers.AddBlacklistEntry(a, duration)
}
delete(self.OutgoingConnections, a)
delete(self.ExpectingIntroductions, a)
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:15,代码来源:daemon.go
示例2: OnDisconnect
func (self *PoolOwner) OnDisconnect(c *gnet.Connection, reason gnet.DisconnectReason) {
if false {
for channel, pDispatcher := range self.pDispatcherManager.Dispatchers {
// (BTW, pDispatcher.ReceivingObject is '&PoolOwner')
// Each channel (or subscription subject) might require
// specific action to be taken on disconnect, such as
// reconnect, clean up etc.
_ = channel
_ = pDispatcher
}
}
delete(self.isConnSolicited, c.Addr())
}
开发者ID:skycoin,项目名称:skycoin,代码行数:16,代码来源:example_gnet.go
示例3: OnConnect
func (self *PoolOwner) OnConnect(c *gnet.Connection, is_solicited bool) {
self.isConnSolicited[c.Addr()] = is_solicited
if false {
for channel, pDispatcher := range self.pDispatcherManager.Dispatchers {
// (BTW, pDispatcher.ReceivingObject is '&PoolOwner')
// Each channel (or subscription subject) might require
// specific action to be taken on connect, such as request
// initial values from solicited, authenticate the client
// from unsolicited one etc.
_ = channel
_ = pDispatcher
}
}
}
开发者ID:skycoin,项目名称:skycoin,代码行数:16,代码来源:example_gnet.go
示例4: onConnect
// Called when a ConnectEvent is processed off the onConnectEvent channel
func (self *Daemon) onConnect(c *gnet.Connection, solicited bool) {
a := c.Addr()
if solicited {
logger.Info("Connected to %s as we requested", a)
} else {
logger.Info("Received unsolicited connection to %s", a)
}
serviceConList := self.pendingConnections[a] //list of services to connect to
delete(self.pendingConnections, a)
blacklisted := self.Peers.Peers.IsBlacklisted(a)
if blacklisted {
logger.Info("%s is blacklisted, disconnecting", a)
self.Pool.Disconnect(c, DisconnectIsBlacklisted)
return
}
if self.Pool.Addresses[a] != nil {
logger.Info("Already connected to %s, disconnecting", a)
self.Pool.Disconnect(c, DisconnectConnectedTwice)
}
if solicited {
self.OutgoingConnections[a] = c
}
self.ExpectingIntroductions[a] = util.Now()
logger.Debug("Sending introduction message to %s", a)
m := NewIntroductionMessage(MirrorConstant, self.Config.Version,
self.Pool.Config.Port)
self.Service.Send(c, m)
//send connection message to each service in list
for _, service := range serviceConList {
self.ConnectToService(c, service)
}
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:40,代码来源:daemon.go
示例5: OnDisconnect
func (self *AetherServer) OnDisconnect(c *gnet.Connection) {
fmt.Printf("AetherServer: OnDisconnect, addr= %s \n", c.Addr())
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:3,代码来源:aether.go
示例6: OnDisconnect
func (sd *TestServiceServer) OnDisconnect(c *gnet.Connection) {
fmt.Printf("TestServiceServer: OnDisconnect, addr= %s \n", c.Addr())
}
开发者ID:Chao-Jia,项目名称:skycoin,代码行数:3,代码来源:main.go
示例7: onMessage
//this is called when a message is received
func onMessage(c *gnet.Connection, channel uint16,
msg []byte) error {
fmt.Printf("Event Callback: message event: addr= %s, channel %v, msg= %s \n", c.Addr(), channel, msg)
return nil
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:6,代码来源:main.go
示例8: OnDisconnect
func (sd *DaemonService) OnDisconnect(c *gnet.Connection) {
fmt.Printf("SkywireDaemon: OnDisconnect, addr= %s \n", c.Addr())
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:3,代码来源:messages.go
示例9: OnConnect
func (sd *SkywireDaemon) OnConnect(c *gnet.Connection) {
fmt.Printf("SkywireDaemon: OnConnect, addr= %s \n", c.Addr())
}
开发者ID:JmAbuDabi,项目名称:skycoin,代码行数:3,代码来源:main.go
注:本文中的github.com/skycoin/skycoin/src/aether.Connection类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论