requestId property

  1. @TagNumber(3)
int get requestId

This field must be set to the same request_id as the WorkRequest it is a response to. Since worker processes which support multiplex worker will handle multiple WorkRequests in parallel, this ID will be used to determined which WorkerProxy does this WorkResponse belong to.

Implementation

@$pb.TagNumber(3)
$core.int get requestId => $_getIZ(2);
  1. @TagNumber(3)
set requestId (int v)

Implementation

@$pb.TagNumber(3)
set requestId($core.int v) {
  $_setSignedInt32(2, v);
}