py3dtiles.tilers.base_tiler.message_type module

class py3dtiles.tilers.base_tiler.message_type.ManagerMessage(value)[source]

Bases: Enum

Message types sent by the convert function.

If you create a new tiler, this category of messages is sent by Tiler. You cannot inherit this class since it is an enum. Create a new one without these 2 message types.

SHUTDOWN = b'shutdown'
STOP = b'stop'
class py3dtiles.tilers.base_tiler.message_type.WorkerMessageType(value)[source]

Bases: Enum

Message types sent by the broker.

If you create a new tiler, this category of messages is sent by WorkerTiler. You cannot inherit this class. Create a new one without these 3 message types.

ERROR = b'error'
HALTED = b'halted'
IDLE = b'idle'
REGISTER = b'register'