// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. abstract class RPCResponses { static const success = { 'type': 'Success', }; static const collectedSentinel = { 'type': 'Sentinel', 'kind': 'Collected', 'valueAsString': '', }; } // Give connections time to reestablish before considering them closed. // Required to reestablish connections killed by UberProxy. const sseKeepAlive = Duration(seconds: 30); abstract class PauseTypeMasks { static const pauseOnStartMask = 1 << 0; static const pauseOnReloadMask = 1 << 1; static const pauseOnExitMask = 1 << 2; } abstract class ServiceEvents { static const isolateExit = 'IsolateExit'; static const isolateSpawn = 'IsolateSpawn'; static const isolateStart = 'IsolateStart'; static const pauseExit = 'PauseExit'; static const pausePostRequest = 'PausePostRequest'; static const pauseStart = 'PauseStart'; static const resume = 'Resume'; }