X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=93c5bd9f412cf7b1e82b35aa543ce1bcf3144ee0;hb=f4c3affb026a94968ca135f57396bf129694fa23;hp=bb765c75dcf8f00d6ed766c1c1f8ccdcd1592357;hpb=d58b442097da31f8b974d51aef63c64470d9ab48;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index bb765c75..93c5bd9f 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -24,7 +24,7 @@ export class Constants { static readonly SEMVER_PATTERN = '^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$'; - static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = 1024; + static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = 4096; static readonly DEFAULT_HASH_ALGORITHM = 'sha384'; @@ -36,6 +36,7 @@ export class Constants { static readonly DEFAULT_FLUCTUATION_PERCENT = 5; + static readonly DEFAULT_PERFORMANCE_DIRECTORY = 'performance'; static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json'; static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'e-mobility-charging-stations-simulator'; static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records'; @@ -47,12 +48,14 @@ export class Constants { static readonly MAX_RANDOM_INTEGER = 281474976710654; - static readonly EMPTY_FREEZED_OBJECT = Object.freeze({}); + static readonly STOP_SIMULATOR_TIMEOUT = 120000; // Ms + + static readonly EMPTY_FROZEN_OBJECT = Object.freeze({}); static readonly EMPTY_FUNCTION = Object.freeze(() => { /* This is intentional */ }); - static readonly DEFAULT_RESERVATION_EXPIRATION_OBSERVATION_INTERVAL = 5000; // Ms + static readonly DEFAULT_RESERVATION_EXPIRATION_INTERVAL = 60000; // Ms private constructor() { // This is intentional