diff --git a/ractor/Cargo.toml b/ractor/Cargo.toml index e53cb58d..d4c7af58 100644 --- a/ractor/Cargo.toml +++ b/ractor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor" -version = "0.10.1" +version = "0.10.2" authors = ["Sean Lawlor", "Evan Au", "Dillon George"] description = "A actor framework for Rust" documentation = "https://docs.rs/ractor" diff --git a/ractor/src/factory/factoryimpl.rs b/ractor/src/factory/factoryimpl.rs index 06a87eb8..0af000be 100644 --- a/ractor/src/factory/factoryimpl.rs +++ b/ractor/src/factory/factoryimpl.rs @@ -140,7 +140,7 @@ where /// Controls the parallel capacity of the worker pool by dynamically growing/shrinking the pool pub capacity_controller: Option>, - /// Lifecycle hooks which provide access to points in the thrift factory's lifecycle + /// Lifecycle hooks which provide access to points in the factory's lifecycle /// for shutdown/startup/draining pub lifecycle_hooks: Option>>, @@ -319,9 +319,9 @@ where /// Sets the factory's lifecycle hooks implementation /// - /// Lifecycle hooks provide access to points in the thrift factory's lifecycle + /// Lifecycle hooks provide access to points in the factory's lifecycle /// for shutdown/startup/draining where user-defined logic can execute (and - /// block factory lifecycle at critical points). For example, in thrift, this means + /// block factory lifecycle at critical points). This means /// the factory won't start accepting requests until the complete startup routine /// is completed. pub fn with_lifecycle_hooks>( diff --git a/ractor/src/factory/queues.rs b/ractor/src/factory/queues.rs index e7b0678a..ae07312f 100644 --- a/ractor/src/factory/queues.rs +++ b/ractor/src/factory/queues.rs @@ -117,9 +117,9 @@ impl From for StandardPriority { } /// The [PriorityManager] is responsible for extracting the job priority from -/// a given job's key (`TKey`). Additionally in some scenarios (e.g. thrift servers) -/// some jobs may be non-discardable, i.e. can be enqueued regardless of the backpressure -/// status of the factory. This is also responsible for determining if a job can be loadshed. +/// a given job's key (`TKey`). Additionally in some scenarios some jobs may be non-discardable, +/// i.e. can be enqueued regardless of the backpressure status of the factory. This is also +/// responsible for determining if a job can be loadshed. pub trait PriorityManager: Send + Sync + 'static where TKey: JobKey, diff --git a/ractor_cluster/Cargo.toml b/ractor_cluster/Cargo.toml index 1bd2bbb2..0e806304 100644 --- a/ractor_cluster/Cargo.toml +++ b/ractor_cluster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor_cluster" -version = "0.10.1" +version = "0.10.2" authors = ["Sean Lawlor", "Evan Au", "Dillon George"] description = "Distributed cluster environment of Ractor actors" documentation = "https://docs.rs/ractor" diff --git a/ractor_cluster_derive/Cargo.toml b/ractor_cluster_derive/Cargo.toml index cd79559f..1b265530 100644 --- a/ractor_cluster_derive/Cargo.toml +++ b/ractor_cluster_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor_cluster_derive" -version = "0.10.1" +version = "0.10.2" authors = ["Sean Lawlor "] description = "Derives for ractor_cluster" license = "MIT"