-
- All Implemented Interfaces:
-
com.google.protobuf.MessageLiteOrBuilder
public interface LivekitAgent.WorkerMessageOrBuilder implements MessageLiteOrBuilder
-
-
Method Summary
Modifier and Type Method Description abstract boolean
hasRegister()
agent workers need to register themselves with the server first
.livekit.RegisterWorkerRequest register = 1;
abstract LivekitAgent.RegisterWorkerRequest
getRegister()
agent workers need to register themselves with the server first
.livekit.RegisterWorkerRequest register = 1;
abstract boolean
hasAvailability()
worker confirms to server that it's available for a job, or declines it
.livekit.AvailabilityResponse availability = 2;
abstract LivekitAgent.AvailabilityResponse
getAvailability()
worker confirms to server that it's available for a job, or declines it
.livekit.AvailabilityResponse availability = 2;
abstract boolean
hasStatus()
worker can update its status to the server, including taking itself out of the pool
.livekit.UpdateWorkerStatus status = 3;
abstract LivekitAgent.UpdateWorkerStatus
getStatus()
worker can update its status to the server, including taking itself out of the pool
.livekit.UpdateWorkerStatus status = 3;
abstract boolean
hasJobUpdate()
.livekit.JobStatusUpdate job_update = 4;
abstract LivekitAgent.JobStatusUpdate
getJobUpdate()
.livekit.JobStatusUpdate job_update = 4;
abstract LivekitAgent.WorkerMessage.MessageCase
getMessageCase()
-
-
Method Detail
-
hasRegister
abstract boolean hasRegister()
agent workers need to register themselves with the server first
.livekit.RegisterWorkerRequest register = 1;
-
getRegister
abstract LivekitAgent.RegisterWorkerRequest getRegister()
agent workers need to register themselves with the server first
.livekit.RegisterWorkerRequest register = 1;
-
hasAvailability
abstract boolean hasAvailability()
worker confirms to server that it's available for a job, or declines it
.livekit.AvailabilityResponse availability = 2;
-
getAvailability
abstract LivekitAgent.AvailabilityResponse getAvailability()
worker confirms to server that it's available for a job, or declines it
.livekit.AvailabilityResponse availability = 2;
-
hasStatus
abstract boolean hasStatus()
worker can update its status to the server, including taking itself out of the pool
.livekit.UpdateWorkerStatus status = 3;
-
getStatus
abstract LivekitAgent.UpdateWorkerStatus getStatus()
worker can update its status to the server, including taking itself out of the pool
.livekit.UpdateWorkerStatus status = 3;
-
hasJobUpdate
abstract boolean hasJobUpdate()
.livekit.JobStatusUpdate job_update = 4;
-
getJobUpdate
abstract LivekitAgent.JobStatusUpdate getJobUpdate()
.livekit.JobStatusUpdate job_update = 4;
-
getMessageCase
abstract LivekitAgent.WorkerMessage.MessageCase getMessageCase()
-
-
-
-