コード例 #1
0
ファイル: connection.go プロジェクト: newgogo/Exis
func (ep *WebsocketConnection) Send(data []byte) {
	// core.Debug("Writing data")
	// Does the lock block? The locks should be faster than working off the channel,
	// but the comments in the other code imply that the lock blocks on the send?

	ep.lock.Lock()
	if err := ep.conn.WriteMessage(ep.payloadType, data); err != nil {
		core.Warn("No one is dealing with my errors! Cant write to socket. Eror: %s", err)
		panic("Unrecoverable error")
	}
	ep.lock.Unlock()
}
コード例 #2
0
ファイル: main.go プロジェクト: kevinherro/Exis
func Warn(s string)        { core.Warn("%s", s) }
コード例 #3
0
ファイル: main.go プロジェクト: newgogo/Exis
//export Warn
func Warn(s *C.char) { core.Warn("%s", C.GoString(s)) }