1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 21:10:37 +02:00
Commit Graph

76 Commits

Author SHA1 Message Date
3cf1c548fd prepare actix-rt release 2.2.0 2021-03-29 06:57:14 +01:00
12d3942b98 Remove unused types in actix-tls. Add ActixStream impl for Box<dyn Ac… (#297) 2021-03-26 13:03:03 +00:00
0c73f13c8b ActixStream readiness methods return Ready object (#293) 2021-03-23 05:50:48 +00:00
c3be839a69 add local_addr binding to connector service 2021-02-24 01:13:17 +08:00
7e483cc356 tweak task and stream docs 2021-02-20 17:34:04 +00:00
75d7ae3139 add actix stream trait (#276) 2021-02-20 17:25:22 +00:00
32543809f9 add System::try_current (#275) 2021-02-06 22:45:03 +00:00
eb4d29e15e add arbiter handle assoc fn (#274)
* add arbiter handle assoc fn
2021-02-06 22:27:56 +00:00
9d0901e07f actix-rt: expose JoinError (#271) 2021-02-06 15:50:38 +00:00
4ec358575e prepare actix-rt v2.0.0 release (#262) 2021-02-03 10:25:31 +00:00
66bd5bf4a2 prepare macros v0.2.0 release (#261) 2021-02-02 02:07:58 +00:00
057e7cd7c9 prepare rt v2.0.0-beta.3 2021-01-31 05:19:30 +00:00
0b656f51e1 deprecate rt TLS item storage 2021-01-31 04:48:03 +00:00
0eb68d1c7b Revert "remove arbiter TLS item storage"
This reverts commit 3e6f69885c.
2021-01-31 04:45:27 +00:00
3e6f69885c remove arbiter TLS item storage 2021-01-31 04:43:35 +00:00
2fa60b07ae prevent arbiter leaks by waiting for registration 2021-01-31 04:41:28 +00:00
b75254403a remove builder and introduce worker handle (#257) 2021-01-31 03:34:07 +00:00
1b35ff8ee6 express spawn fn as spawn fut (#256) 2021-01-29 15:16:30 +00:00
2924419905 prevent spawn_fn panic bubbling (#255) 2021-01-29 14:16:10 +00:00
6b86b5efc5 rename arbiter to worker (#254) 2021-01-29 04:08:14 +00:00
ba39c8436d remove tokio runners (#253) 2021-01-29 02:21:06 +00:00
45edff625e add rt tests and doc tests 2021-01-26 09:46:14 +00:00
874e5f2e50 change default name resolver and allow custom resolvers (#248) 2021-01-23 01:33:50 +00:00
6edf9b8278 prepare rt 2.0.0-beta.2 release 2021-01-09 15:12:59 +00:00
f751cf5acb use convert err on forward_ready! (#246) 2021-01-09 14:13:16 +00:00
a1982bdbad add actix-rt::task (#245) 2021-01-03 18:16:57 +00:00
f48e3f4cb0 prepare release for rt and service 2020-12-28 01:58:31 +00:00
0c12930796 update to tokio 1.0 for actix-rt (#236) 2020-12-28 01:40:22 +00:00
518bf3f6a6 remove RUNNING Q PENDING thread locals from actix-rt (#207) 2020-12-26 23:26:02 +00:00
b296d0f254 Intradoc links conversion (#227)
* intra doc conversion

* rm trailing blank comment
2020-12-14 08:22:30 +00:00
02a902068f Refactor LocalWaker (#224) 2020-12-13 19:26:57 +00:00
4e43216b99 standardise compiler lints across all crates (#226) 2020-12-12 23:24:00 +00:00
e0dd2a3d76 remove actix-threadpool re-export from actix-rt (#212) 2020-11-24 17:03:09 +00:00
59e976aaca address clippy error (#213) 2020-11-24 16:35:47 +00:00
b7a9cb7bb4 actix-rt: Make the process of running System in existing Runtime more clear (#173) 2020-09-06 11:01:24 +01:00
6906f25e01 actix-rt: Set threshold size for arbiter's pending futures list
Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-04-16 03:12:05 -03:00
06bca19524 actix-rt: Spawn future to cleanup pending JoinHandles
Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-04-09 20:36:44 -03:00
783880bb0a actix-rt: Add Arbiter::is_running helper and fix System::is_set doc
`Arbiter::is_running` can be used to check if the current even-loop is currently
running; which should also work after the system has stopped. `System::is_set`
was updated to reflect what it actually does, it tells if the event loop has
started, which alone can't tell if it has stopped.

Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-04-05 21:00:54 -03:00
69e8df9d62 actix-rt: Run rustfmt
Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-04-05 21:00:54 -03:00
c41b5d8dd4 Replace calls to Pin::new_unchecked with pin_project.
This is a breaking change, as it changes some public methods to take
`Pin<&mut Self>` rather than `&mut self`.

This brings these methods into line with `Stream::poll_next`, which also
takes a `Pin<&mut Self>`
2020-03-04 12:08:52 -05:00
1b7c969f6a actix-rt: minimize futures dependencies to futures-{channel,util} with default features off (#104)
* build(deps): minimize `futures` deps by using `futures-channel` and `futures-util` directly

* style(actix-rt): enforce spaces around equals in `Cargo.toml`
2020-02-27 01:15:21 +09:00
f1685d8253 Add Arbiter::local_join associated function
Arbiter::local_join function can be used to await for futures spawned
on current arbiter.

Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-02-26 12:59:46 -03:00
602db1779e Expose is_set (#99)
* Expose is_set

* Update doc and changes.md
2020-02-25 02:55:02 -03:00
d5a6c83207 Suppress/fix clippy warnings 2020-01-29 12:05:55 +09:00
3b4f222242 Minor grammatical fix to docs. 2020-01-10 20:52:49 +09:00
3a858feaec migrate to tokio 0.2.2 2019-12-05 16:40:24 +06:00
2756bedc3d Fix for non Unix OS (#69) 2019-12-03 10:07:54 +06:00
9f575418c1 clippy warnings 2019-12-02 22:30:09 +06:00
9fbe6a1f6d refactor server configuration and tls support 2019-12-02 11:30:27 +06:00
503c2feb08 re-export net primitives 2019-12-01 10:56:25 +06:00