pub struct TaskScheduler { /* private fields */ }Expand description
Simple task scheduler for managing async operations
Implementations§
Source§impl TaskScheduler
impl TaskScheduler
Sourcepub fn new(max_concurrent_tasks: usize) -> Self
pub fn new(max_concurrent_tasks: usize) -> Self
Creates a new task scheduler with specified concurrency limit
§Parameters
max_concurrent_tasks: Maximum number of concurrent tasks
Sourcepub async fn schedule_task<F, T>(&self, task: F) -> Result<T, GraphRAGError>
pub async fn schedule_task<F, T>(&self, task: F) -> Result<T, GraphRAGError>
Sourcepub fn max_concurrent_tasks(&self) -> usize
pub fn max_concurrent_tasks(&self) -> usize
Returns the maximum number of concurrent tasks allowed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskScheduler
impl RefUnwindSafe for TaskScheduler
impl Send for TaskScheduler
impl Sync for TaskScheduler
impl Unpin for TaskScheduler
impl UnsafeUnpin for TaskScheduler
impl UnwindSafe for TaskScheduler
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