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

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: proto

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

[docs]class Authenticate(object): __slots__ = ['_tab']
[docs] @classmethod def GetRootAs(cls, buf, offset=0): n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) x = Authenticate() x.Init(buf, n + offset) return x
[docs] @classmethod def GetRootAsAuthenticate(cls, buf, offset=0): """This method is deprecated. Please switch to GetRootAs.""" return cls.GetRootAs(buf, offset)
# Authenticate
[docs] def Init(self, buf, pos): self._tab = flatbuffers.table.Table(buf, pos)
# Authenticate
[docs] def Signature(self): o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4)) if o != 0: return self._tab.String(o + self._tab.Pos) return None
# Authenticate
[docs] def Extra(self): o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6)) if o != 0: x = self._tab.Indirect(o + self._tab.Pos) from wamp.Map import Map obj = Map() obj.Init(self._tab.Bytes, x) return obj return None
[docs]def AuthenticateStart(builder): builder.StartObject(2)
[docs]def Start(builder): return AuthenticateStart(builder)
[docs]def AuthenticateAddSignature(builder, signature): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(signature), 0)
[docs]def AddSignature(builder, signature): return AuthenticateAddSignature(builder, signature)
[docs]def AuthenticateAddExtra(builder, extra): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(extra), 0)
[docs]def AddExtra(builder, extra): return AuthenticateAddExtra(builder, extra)
[docs]def AuthenticateEnd(builder): return builder.EndObject()
[docs]def End(builder): return AuthenticateEnd(builder)