Ivan Petkov
6d8d388dc5
docs: add docs.rs metadata to build with all features ( #1471 )
2019-08-18 11:11:46 -07:00
Carl Lerche
88b4ec84d7
chore: prepare 0.2.0-alpha.2 release ( #1465 )
2019-08-17 23:34:25 -07:00
Carl Lerche
3b27dc31d2
threadpool: move threadpool into tokio-executor ( #1452 )
...
The threadpool is behind a feature flag.
Refs: #1264
2019-08-15 13:09:02 -07:00
Carl Lerche
9de7083be8
executor: move current-thread into crate ( #1447 )
...
The `CurrentThread` executor is exposed using a feature flag.
Refs: #1264
2019-08-15 09:52:25 -07:00
Ilya Lakhin
fb9809c068
executor, threadpool: forward port fix from #1155 ( #1433 )
...
Add executor::exit, allowing other executors inside threadpool::blocking.
2019-08-13 21:12:49 -07:00
Taiki Endo
930cce8677
chore: update futures-preview to 0.3.0-alpha.18 ( #1427 )
2019-08-10 14:09:28 -07:00
Taiki Endo
6a125082e4
chore: apply unreachable_pub and missing_debug_implementations to all crates ( #1424 )
2019-08-11 04:28:52 +09:00
Taiki Endo
d9f9c5658f
chore: bump to newer nightly ( #1426 )
2019-08-11 02:01:20 +09:00
Taiki Endo
73102760cf
chore: change default lint level to warning and deny warnings in CI ( #1416 )
2019-08-10 00:07:57 +09:00
Lucio Franco
50e5d401df
chore: prepare for v0.2.0-alpha.1 release ( #1410 )
2019-08-08 12:48:53 -07:00
Carl Lerche
831be9c08e
executor: remove unused dependency ( #1406 )
2019-08-07 19:55:42 -07:00
Lucio Franco
6412389bba
executor: update park implementation ( #1402 )
...
Signed-off-by: Lucio Franco <[email protected] >
2019-08-07 13:01:13 -07:00
Carl Lerche
878503f965
docs: update API documentation for some crates ( #1380 )
...
Updates API documentation for
- tokio-buf
- tokio-codec
- tokio-current-thread
- tokio-executor
2019-08-02 14:35:32 -07:00
Taiki Endo
fe021e6c00
ci: enable clippy lints ( #1335 )
2019-07-26 03:47:14 +09:00
Jon Gjengset
003b4d8074
Get rid of Enter for with_default ( #1315 )
...
We want executors to enforce that there are never multiple active at the
same time. This is ensured through `Enter`, which will panic if you
attempt to create more than one. However, by requiring you to pass an
`&mut Enter` to `executor::with_default`, we were *also* disallowing
temporarily overriding the current executor.
This patch removes that requirement.
2019-07-16 14:29:35 -04:00
matthieugras
0b75c0c53d
executor: block thread when needed in block fn ( #1303 )
...
Fix #1296
2019-07-15 08:56:20 -07:00
Steffen Butzer
0651f09427
Remove usage of deprecated std::error::Error methods ( #1206 ) ( #1245 )
2019-07-03 23:06:03 -07:00
Carl Lerche
06c473e628
Update Tokio to use std::future. ( #1120 )
...
A first pass at updating Tokio to use `std::future`.
Implementations of `Future` from the futures crate are updated to implement
`Future` from std. Implementations of `Stream` are moved to a feature flag.
This commits disables a number of crates that have not yet been updated.
2019-06-24 12:34:30 -07:00
Carl Lerche
18ed0be851
executor: remove unnecessary APIs from Enter. ( #1115 )
2019-05-31 11:11:10 -07:00
Carl Lerche
cb4aea394e
Update Tokio to Rust 2018 ( #1082 )
2019-05-14 10:27:36 -07:00
Carl Lerche
949adbb887
chore: remember to remove path deps on release ( #1057 )
2019-04-24 10:42:39 -07:00
Carl Lerche
3c8f110730
Bump Tokio version to v0.1.18 ( #997 )
...
Also bumps:
- tokio-signal (0.2.8)
- tokio-current-thread (0.1.6)
- tokio-executor (0.1.7)
- tokio-threadpool (0.1.13)
[ci-release]
2019-03-22 13:55:48 -07:00
Carl Lerche
b1172f8074
executor: add TypedExecutor ( #993 )
...
Adds a `TypedExecutor` trait that describes how to spawn futures of a specific
type. This is useful for implementing functions that are generic over an executor
and wish to support both `Send` and `!Send` cases.
2019-03-21 14:30:18 -07:00
Lucio Franco
db4019d84a
trace: Fix tokio-trace documentation url in the README ( #939 )
2019-03-01 15:31:59 -08:00
Carl Lerche
80162306e7
chore: apply rustfmt to all crates ( #917 )
2019-02-21 11:56:15 -08:00
Andy Russell
2d5aa82341
chore: move doc comments inside macro invocations ( #901 )
2019-02-19 13:54:52 -08:00
Carl Lerche
961aae41c4
Bump version to 0.1.14. ( #836 )
...
Also bumps:
* tokio-async-await (0.1.5)
* tokio-executor (0.1.6)
* tokio-fs (0.1.5)
* tokio-io (0.1.11)
* tokio-reactor (0.1.8)
* tokio-tcp (0.1.3)
* tokio-threadpool (0.1.10)
* tokio-tls (0.2.1)
* tokio-uds (0.2.5)
...and updates LICENSE files to 2019.
2019-01-06 23:25:55 -08:00
Carl Lerche
cbecb87797
executor: fix build ( #825 )
...
Two unrelated PRs to the same file resulted in a broken build. This
patch fixes the build by including `Arc`.
2019-01-03 11:26:58 -08:00
Stjepan Glavina
5e2d93f060
Use Crossbeam's Parker/Unparker ( #528 )
2019-01-02 21:51:22 -08:00
Pavel Strakhov
1a5026324f
executor: impl Unpark for Arc<Unpark> ( #802 )
2018-12-28 14:40:04 -05:00
Carl Lerche
cab9a44e01
Bump version to v0.1.9 ( #666 )
...
This also includes bumps to subcrates.
* tokio-async-await (0.1.4)
* tokio-codec (0.1.1)
* tokio-current-thread (0.1.2)
* tokio-executor (0.1.5)
* tokio-io (0.1.9)
* tokio-reactor (0.1.6)
* tokio-tcp (0.1.2)
* tokio-threadpool (0.1.7)
* tokio-timer (0.2.7)
2018-09-26 22:32:51 -07:00
Eliza Weisman
98d23b8b29
Make tokio::run panic if called from inside tokio::run ( #646 )
...
This is implemented by creating an `Enter` instance from within `run`.
This patch also introduces `Enter::block_on`.
Fixes #504
2018-09-18 21:57:21 -07:00
Carl Lerche
4019198706
Add some missing future::Executor implementations ( #563 )
...
This adds an implementation of future::Executor for
`executor::DefaultExecutor` and `runtime::current_thread::Handle`.
2018-09-17 22:23:48 -07:00
Ben Boeckel
82c5baa09b
Spelling fixes ( #571 )
...
* docs: fix spelling and whitespace errors
2018-08-25 15:26:41 -04:00
Carl Lerche
07203408de
Bump version to v0.1.8 ( #566 )
...
This also bumps a number of sub crates:
* tokio-executor (0.1.3)
* tokio-io (0.1.8)
* tokio-reactor (0.1.4)
* tokio-threadpool (0.1.6)
* tokio-timer (0.2.6)
* tokio-udp (0.1.2)
2018-08-24 08:58:26 -07:00
Carl Lerche
d91c775f36
Remove dead futures2 code. ( #538 )
...
The futures 0.2 crate is not intended for widespread usage. Also, the
futures team is exploring the compat shim route.
If futures 0.3 support is added to Tokio 0.1, then a different
integration route will be explored, making the current code unhelpful.
2018-08-09 21:56:53 -07:00
Stjepan Glavina
6b1e4ab0a3
Implement Error for a few error types ( #511 )
2018-08-07 19:45:58 -07:00
Carl Lerche
e964c4136c
Bump subcrate versions ( #524 )
...
* tokio-current-thread 0.1.1
* tokio-executor 0.1.3
* tokio-fs 0.1.3
* tokio-reactor 0.1.3
* tokio-tcp 0.1.1
* tokio-timer 0.2.5
2018-08-06 20:36:50 -07:00
Sam Rijs
0f76470172
detect and handle recursive calls to DefaultExecutor ( #473 )
2018-07-30 20:59:08 -07:00
Stjepan Glavina
e5b2681513
Fix a race in thread wakeup ( #507 )
2018-07-30 20:46:46 -07:00
David Kellum
491f15827b
General rustdoc improvements ( #450 )
...
* Normalize links to docs.rs/CRATE/M.N/...
docs.rs is smart enough to show docs for the latest M.N.P release when
M.N is used in the link. For example:
https://docs.rs/mio/0.6/mio/struct.Poll.html
..will show mio 0.6.14 and later docs. While using the `M.N.*`
(ASTERISK) syntax also works, `M.N` is the more common usage, so
standarize a few existing links to that format.
* Fix missing or malformed rustdoc links
* executor lib rustdoc minor format change
* Promote tokio-threadpool crate level comments to rustdoc
* Replace hidden tokio::executor::thread_pool docs with deprecation note
* Fix typo/simplify util module rustdoc
* Reuse some tokio::executor::thread_pool rustdoc for the crate
Relates to #421
2018-07-22 13:35:30 -07:00
Stjepan Glavina
c17ecb53e7
Pad fields to cacheline size to avoid false sharing ( #475 )
2018-07-16 14:22:48 -07:00
Sam Rijs
78b6bd4ca5
implement Send and Sync for DefaultExecutor ( #472 )
...
Fxes #376
2018-07-11 12:35:32 -07:00
Richard Dodd (dodj)
b3ff9e315c
Update lib.rs ( #471 )
...
Fix build failure on nightly (combination of warning for "cannot be resolved" and lint deny(warnings))
2018-07-11 12:30:51 -07:00
Stjepan Glavina
b019532bc2
Implement status() for DefaultExecutor ( #463 )
2018-07-05 10:19:49 -07:00
Roman
7153d8d6ce
Add a verbose error message for EnterError ( #441 )
...
Add a verbose error message for EnterError while trying to run an
executor while another executor is already running.
Fixes : #410
2018-06-21 09:46:45 -07:00
Sean McArthur
011ebf44eb
Implement Executor for Box<E: Executor> ( #420 )
2018-06-14 16:28:23 -07:00
Julian Tescher
06b2c40222
Fix typos ( #348 )
2018-05-08 11:44:17 -07:00
Carl Lerche
7a2b5db15c
Remove futures2 feature from Cargo.toml files ( #334 )
...
Currently, the state of the futures2 integration is pretty broken. This
patch removes the feature flag, preventing users from trying to use it.
In the future, it can be brought back when the implementation is fixed.
2018-05-02 10:48:58 -07:00
Carl Lerche
2a01c26d58
Bump version to v0.1.5 ( #271 )
...
This also bumps:
* tokio-executor to v0.1.2
* tokio-threadpool to v0.1.2
* tokio-timer to v0.2.0
2018-03-30 15:28:44 -07:00