Source code for py3dtiles.tilers.point.point_message_type

from enum import Enum


[docs] class PointManagerMessage(Enum): READ_FILE = b"read_file" WRITE_CONTENT = b"write_content" PROCESS_JOBS = b"process_job"
[docs] class PointWorkerMessageType(Enum): READ = b"read" PROCESSED = b"processed" CONTENT_WRITTEN = b"content_written" NEW_TASK = b"new_task"