background property

  1. @TagNumber(4)
bool get background

This flag allows a Runnable to continue running in the background while the Task executes subsequent Runnables. This is useful to provide services to other Runnables (or to provide debugging support tools like SSH servers).

Implementation

@$pb.TagNumber(4)
$core.bool get background => $_getBF(3);
  1. @TagNumber(4)
set background (bool v)

Implementation

@$pb.TagNumber(4)
set background($core.bool v) { $_setBool(3, v); }