pub struct WorkspaceManager<'a> { /* private fields */ }Implementations§
Source§impl<'a> WorkspaceManager<'a>
impl<'a> WorkspaceManager<'a>
pub fn new(pool: &'a SqlitePool) -> Self
Sourcepub async fn get_current_task(
&self,
session_id: Option<&str>,
) -> Result<CurrentTaskResponse>
pub async fn get_current_task( &self, session_id: Option<&str>, ) -> Result<CurrentTaskResponse>
Get the current task for a session
Sourcepub async fn set_current_task(
&self,
task_id: i64,
session_id: Option<&str>,
) -> Result<CurrentTaskResponse>
pub async fn set_current_task( &self, task_id: i64, session_id: Option<&str>, ) -> Result<CurrentTaskResponse>
Set the current task for a session
Sourcepub async fn clear_current_task(&self, session_id: Option<&str>) -> Result<()>
pub async fn clear_current_task(&self, session_id: Option<&str>) -> Result<()>
Clear the current task for a session
Sourcepub async fn cleanup_expired_sessions(&self, hours: u32) -> Result<u64>
pub async fn cleanup_expired_sessions(&self, hours: u32) -> Result<u64>
Clean up expired sessions (older than given hours)
Sourcepub async fn enforce_session_limit(&self, max_sessions: u32) -> Result<u64>
pub async fn enforce_session_limit(&self, max_sessions: u32) -> Result<u64>
Enforce session limit (keep most recent N sessions)
Auto Trait Implementations§
impl<'a> Freeze for WorkspaceManager<'a>
impl<'a> !RefUnwindSafe for WorkspaceManager<'a>
impl<'a> Send for WorkspaceManager<'a>
impl<'a> Sync for WorkspaceManager<'a>
impl<'a> Unpin for WorkspaceManager<'a>
impl<'a> !UnwindSafe for WorkspaceManager<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more