in go/pkg/proton/handlers.go [118:169]
func (t MessagingEvent) String() string {
switch t {
case MStart:
return "Start"
case MConnectionError:
return "ConnectionError"
case MSessionError:
return "SessionError"
case MLinkError:
return "LinkError"
case MConnectionOpening:
return "ConnectionOpening"
case MSessionOpening:
return "SessionOpening"
case MLinkOpening:
return "LinkOpening"
case MConnectionOpened:
return "ConnectionOpened"
case MSessionOpened:
return "SessionOpened"
case MLinkOpened:
return "LinkOpened"
case MConnectionClosing:
return "ConnectionClosing"
case MSessionClosing:
return "SessionClosing"
case MLinkClosing:
return "LinkClosing"
case MConnectionClosed:
return "ConnectionClosed"
case MSessionClosed:
return "SessionClosed"
case MLinkClosed:
return "LinkClosed"
case MDisconnected:
return "Disconnected"
case MSendable:
return "Sendable"
case MAccepted:
return "Accepted"
case MRejected:
return "Rejected"
case MReleased:
return "Released"
case MSettled:
return "Settled"
case MMessage:
return "Message"
default:
return "Unknown"
}
}