ente/lib/events/sync_status_update_event.dart
2021-04-28 03:13:51 +05:30

39 lines
825 B
Dart

import 'package:photos/events/event.dart';
class SyncStatusUpdate extends Event {
final int completed;
final int total;
final bool wasStopped;
final SyncStatus status;
final String reason;
final Error error;
int timestamp;
SyncStatusUpdate(
this.status, {
this.completed,
this.total,
this.wasStopped = false,
this.reason = "",
this.error,
}) {
this.timestamp = DateTime.now().microsecondsSinceEpoch;
}
@override
String toString() {
return 'SyncStatusUpdate(completed: $completed, total: $total, wasStopped: $wasStopped, status: $status, reason: $reason, error: $error)';
}
}
enum SyncStatus {
started_first_gallery_import,
completed_first_gallery_import,
applying_remote_diff,
preparing_for_upload,
in_progress,
paused,
completed_backup,
error,
}