Documentation ¶
Index ¶
- type C2S
- type Context
- func (ctx *Context) Bool(key string) bool
- func (ctx *Context) Float(key string) float64
- func (ctx *Context) Int(key string) int
- func (ctx *Context) Object(key string) interface{}
- func (ctx *Context) SetBool(boolean bool, key string)
- func (ctx *Context) SetFloat(float float64, key string)
- func (ctx *Context) SetInt(integer int, key string)
- func (ctx *Context) SetObject(object interface{}, key string)
- func (ctx *Context) SetString(s string, key string)
- func (ctx *Context) String(key string) string
- type InOutStream
- type InStream
- type MockC2S
- func (m *MockC2S) Context() *Context
- func (m *MockC2S) Disconnect(err error)
- func (m *MockC2S) Domain() string
- func (m *MockC2S) FetchElement() xmpp.XElement
- func (m *MockC2S) ID() string
- func (m *MockC2S) IsAuthenticated() bool
- func (m *MockC2S) IsCompressed() bool
- func (m *MockC2S) IsDisconnected() bool
- func (m *MockC2S) IsSecured() bool
- func (m *MockC2S) JID() *jid.JID
- func (m *MockC2S) Presence() *xmpp.Presence
- func (m *MockC2S) Resource() string
- func (m *MockC2S) SendElement(elem xmpp.XElement)
- func (m *MockC2S) SetAuthenticated(authenticated bool)
- func (m *MockC2S) SetCompressed(compressed bool)
- func (m *MockC2S) SetJID(jid *jid.JID)
- func (m *MockC2S) SetPresence(presence *xmpp.Presence)
- func (m *MockC2S) SetSecured(secured bool)
- func (m *MockC2S) Username() string
- func (m *MockC2S) WaitDisconnection() error
- type S2SIn
- type S2SOut
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type C2S ¶ added in v0.3.0
type C2S interface { InOutStream Context() *Context Username() string Domain() string Resource() string JID() *jid.JID IsSecured() bool IsAuthenticated() bool IsCompressed() bool Presence() *xmpp.Presence }
C2S represents a client-to-server XMPP stream.
type Context ¶
type Context struct {
// contains filtered or unexported fields
}
Context carries stream related variables across stream and its associated modules. Its methods are safe for simultaneous use by multiple goroutines.
type InOutStream ¶ added in v0.3.0
InOutStream represents a generic incoming/outgoing stream.
type MockC2S ¶ added in v0.3.0
type MockC2S struct {
// contains filtered or unexported fields
}
MockC2S represents a mocked c2s stream.
func NewMockC2S ¶ added in v0.3.0
NewMockC2S returns a new mocked stream instance.
func (*MockC2S) Disconnect ¶ added in v0.3.0
Disconnect disconnects mocked stream.
func (*MockC2S) FetchElement ¶ added in v0.3.0
FetchElement waits until a new XML element is sent to the mocked stream and returns it.
func (*MockC2S) IsAuthenticated ¶ added in v0.3.0
IsAuthenticated returns whether or not the mocked stream has successfully authenticated.
func (*MockC2S) IsCompressed ¶ added in v0.3.0
IsCompressed returns whether or not the mocked stream has enabled a compression method.
func (*MockC2S) IsDisconnected ¶ added in v0.3.0
IsDisconnected returns whether or not the mocked stream has been disconnected.
func (*MockC2S) IsSecured ¶ added in v0.3.0
IsSecured returns whether or not the mocked stream has been secured.
func (*MockC2S) SendElement ¶ added in v0.3.0
SendElement sends the given XML element.
func (*MockC2S) SetAuthenticated ¶ added in v0.3.0
SetAuthenticated sets whether or not the a mocked stream has been authenticated.
func (*MockC2S) SetCompressed ¶ added in v0.3.0
SetCompressed sets whether or not the a mocked stream has been compressed.
func (*MockC2S) SetPresence ¶ added in v0.3.0
SetPresence sets the mocked stream last received presence element.
func (*MockC2S) SetSecured ¶ added in v0.3.0
SetSecured sets whether or not the a mocked stream has been secured.
func (*MockC2S) WaitDisconnection ¶ added in v0.3.0
WaitDisconnection waits until the mocked stream disconnects.
type S2SIn ¶ added in v0.3.0
type S2SIn interface { InStream }
S2SIn represents an incoming server-to-server XMPP stream.
type S2SOut ¶ added in v0.3.0
type S2SOut interface { InOutStream }
S2SOut represents an outgoing server-to-server XMPP stream.