Source code for autobahn.wamp.gen.wamp.proto.AuthCryptosignWelcome

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: proto

import flatbuffers
from flatbuffers.compat import import_numpy
np = import_numpy()

[docs]class AuthCryptosignWelcome(object): __slots__ = ['_tab']
[docs] @classmethod def GetRootAs(cls, buf, offset=0): n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) x = AuthCryptosignWelcome() x.Init(buf, n + offset) return x
[docs] @classmethod def GetRootAsAuthCryptosignWelcome(cls, buf, offset=0): """This method is deprecated. Please switch to GetRootAs.""" return cls.GetRootAs(buf, offset)
# AuthCryptosignWelcome
[docs] def Init(self, buf, pos): self._tab = flatbuffers.table.Table(buf, pos)
[docs]def AuthCryptosignWelcomeStart(builder): builder.StartObject(0)
[docs]def Start(builder): return AuthCryptosignWelcomeStart(builder)
[docs]def AuthCryptosignWelcomeEnd(builder): return builder.EndObject()
[docs]def End(builder): return AuthCryptosignWelcomeEnd(builder)