27 lines
1.2 KiB
Dart
27 lines
1.2 KiB
Dart
/// Centralized connection timeout constants used across the app.
|
|
class ConnectionTimeouts {
|
|
/// Timeout for probing a cached/preferred endpoint before falling back to
|
|
/// the full candidate race (used in [PlexServer.findBestWorkingConnection]).
|
|
static const preferredEndpointProbe = Duration(milliseconds: 1500);
|
|
|
|
/// Timeout for the connection race where all candidates are tested in
|
|
/// parallel (used in [PlexServer.findBestWorkingConnection]).
|
|
static const connectionRace = Duration(seconds: 2);
|
|
|
|
/// Dio connect timeout for individual HTTP requests to a Plex server.
|
|
static const connect = Duration(seconds: 10);
|
|
|
|
/// Timeout for [MultiServerManager.connectToAllServers] — the maximum time
|
|
/// to wait for each server's connection future.
|
|
static const connectAll = Duration(seconds: 4);
|
|
|
|
/// Dio receive timeout for streaming/large responses from a Plex server.
|
|
static const receive = Duration(seconds: 120);
|
|
|
|
/// Dio connect timeout for plex.tv / clients.plex.tv API requests.
|
|
static const plexTvConnect = Duration(seconds: 5);
|
|
|
|
/// Dio receive timeout for plex.tv / clients.plex.tv API responses.
|
|
static const plexTvReceive = Duration(seconds: 10);
|
|
}
|