Source code for autobahn.wamp.gen.wamp.Void

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: wamp

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

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