disconnect property

  1. @TagNumber(4)
bool get disconnect

Tell API server we are disconnecting now. This is useful for serial links where there is no hardware/protocol based notification that the client has dropped the link. (Sending this message is optional for clients)

Implementation

@$pb.TagNumber(4)
$core.bool get disconnect => $_getBF(2);
  1. @TagNumber(4)
set disconnect (bool value)

Implementation

@$pb.TagNumber(4)
set disconnect($core.bool value) => $_setBool(2, value);