WorkerMessageCode class

A message code is used to report status and error messages to the service.

The message codes are intended to be machine readable. The service will take care of translating these into user understandable messages if necessary. Example use cases: 1. Worker processes reporting successful startup. 2. Worker processes reporting specific errors (e.g. package staging failure).

Constructors

WorkerMessageCode({String? code, Map<String, Object?>? parameters})
WorkerMessageCode.fromJson(Map _json)

Properties

code String?
The code is a string intended for consumption by a machine that identifies the type of message being sent.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
parameters Map<String, Object?>?
Parameters contains specific information about the code.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited