aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/src/events.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 23:00:06 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 23:00:06 +0200
commit2f671f196e245ac1a791c001286e401a2fab9d3a (patch)
treebe90d8f16d5c8b65c6b77ebe1359d22e9738bbf6 /crates/daemon/src/events.rs
parentchore: Commit (diff)
downloadatuin-2f671f196e245ac1a791c001286e401a2fab9d3a.zip
chore: Commit
Diffstat (limited to 'crates/daemon/src/events.rs')
-rw-r--r--crates/daemon/src/events.rs31
1 files changed, 1 insertions, 30 deletions
diff --git a/crates/daemon/src/events.rs b/crates/daemon/src/events.rs
index 1864d224..3b6fa5d8 100644
--- a/crates/daemon/src/events.rs
+++ b/crates/daemon/src/events.rs
@@ -7,8 +7,7 @@
//! External processes (like CLI commands) can also inject events via the
//! Control gRPC service.
-use turtle::history::{History, HistoryId};
-use turtle_common::record::RecordId;
+use turtle::history::History;
/// Events that flow through the daemon's event bus.
///
@@ -23,12 +22,6 @@ pub(crate) enum DaemonEvent {
/// A command has finished running.
HistoryEnded(History),
- // ---- Sync ----
- /// Records were synced from the server.
- ///
- /// The search component uses this to update its index with new history.
- RecordsAdded(Vec<RecordId>),
-
/// Sync completed successfully.
SyncCompleted {
/// Number of records uploaded.
@@ -49,28 +42,6 @@ pub(crate) enum DaemonEvent {
/// Request an immediate sync (external trigger).
ForceSync,
- // ---- External commands ----
- /// History was pruned - search index needs a full rebuild.
- ///
- /// Emitted when the user runs `atuin history prune` or similar.
- HistoryPruned,
-
- /// History was rebuilt - search index needs a full rebuild.
- ///
- /// Emitted when the user runs `atuin store rebuild history` or similar.
- HistoryRebuilt,
-
- /// Specific history items were deleted.
- ///
- /// The search component should remove these from its index.
- HistoryDeleted {
- /// IDs of the deleted history entries.
- ids: Vec<HistoryId>,
- },
-
- /// Settings have changed, components should reload if needed.
- SettingsReloaded,
-
// ---- Lifecycle ----
/// Request graceful shutdown of the daemon.
ShutdownRequested,