idleShutdown property

  1. @TagNumber.new(3)
bool get idleShutdown

Runtime will automatically shutdown after idle_shutdown_time. Default: True

Implementation

@$pb.TagNumber(3)
$core.bool get idleShutdown => $_getBF(2);
  1. @TagNumber.new(3)
set idleShutdown (bool v)

Implementation

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