blob: b69ae7c908514fc7834235e8466e44e295d45d49 [file] [log] [blame]
// 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.
// @dart=2.10
abstract class RPCResponses {
static const success = <String, dynamic>{
'type': 'Success',
};
static const collectedSentinel = <String, dynamic>{
'type': 'Sentinel',
'kind': 'Collected',
'valueAsString': '<collected>',
};
}
// 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';
}