WorkerMessage constructor

WorkerMessage({
  1. Map<String, String>? labels,
  2. String? time,
  3. WorkerHealthReport? workerHealthReport,
  4. WorkerLifecycleEvent? workerLifecycleEvent,
  5. WorkerMessageCode? workerMessageCode,
  6. ResourceUtilizationReport? workerMetrics,
  7. WorkerShutdownNotice? workerShutdownNotice,
})

Implementation

WorkerMessage({
  this.labels,
  this.time,
  this.workerHealthReport,
  this.workerLifecycleEvent,
  this.workerMessageCode,
  this.workerMetrics,
  this.workerShutdownNotice,
});