Crates.io | abscissa_tokio |
lib.rs | abscissa_tokio |
version | 0.8.0 |
source | src |
created_at | 2019-07-18 17:25:42.086601 |
updated_at | 2024-10-15 19:34:28.896925 |
description | Support for launching Tokio runtimes within Abscissa applications |
homepage | https://github.com/iqlusioninc/abscissa |
repository | https://github.com/iqlusioninc/abscissa/tree/main/tokio |
max_upload_size | |
id | 149914 |
size | 12,754 |
Support for launching Tokio runtimes within Abscissa applications.
Where normally you'd use something like the tokio::main
macro to launch
the Tokio runtime, in Abscissa the framework is launched by calling
abscissa_core::boot
from your application's main()
.
This means Abscissa applications need a slightly different convention for starting the Tokio runtime, and ideally one which allows all application subcomponents to register themselves before the runtime is started.
This crate handles instantiating the Tokio runtime as an Abscissa Component, allowing other application components to express they have a Tokio dependency so Abscissa can inject the Tokio component as a dependency.
Once the application has booted and all subcomponents have been registered with
the Tokio runtime, it allows (any of) your application's Runnable
types to
start the runtime without having to hold a lock on application state.
See documentation for usage instructions.
The abscissa_tokio crate is distributed under the terms of the Apache License (Version 2.0).
Copyright © 2020-2024 iqlusion
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.