To futures-lite as futures-lite is to futures: smaller.
Features:
* Fun tools to write everything as async fns.
* Tiny, with no dependencies.
* 100% no_std
support, no heap allocation required.
poll_fn
- wrap a function into a futurepoll_state
- wrap a function and some state into a futurepin!()
- pin a value to the stack.async fn waker()
to get the current waker.async fn sleep()
to wait until you are woken.async fn next_poll()
- polls a future once, returning it for reuse if pending.pending()
- never completes.ready()
- completes on first poll.yield_once()
- lets some other futures do some work .or()
- return the result of the first future to complete.zip()
- return the result of two futures when they both complete.unwrap_ready!()
- unwraps a ready value or returns pending.ors!()
- or()
, but for any number of futures of the same type.zips!()
- zip()
, but for any number of futures.Brand new. The API might change as we discover we've messed up.
The tests are currently being written, but hey it's all too obvious to fail, right? Right...?
Note that this library does most things through async fns, so there are a couple of drawbacks:
Debug
, so things like unwrap()
won't work
on results containing them.In addition, they have some strange quirks, like the inability for pending() to take any type you'd like it to. maybe you can think of a way to do this?
futures-lite
(which I contribute to) suffers none of these
problems. Strongly consider using it if you don't need to avoid
alloc
. We use it in our test suite, especially block_on
.
Almost everything:
Copyright (c) 2020 James Laver, futures-micro contributors.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
Exclusion: module stolen_from_lite
:
Source: https://github.com/stjepang/futures-lite
Licensed under either of
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.