Commit graph

58 commits

Author SHA1 Message Date
Nikolay Kim
e33149df1b
Added Service::poll() method (#481) 2024-12-04 13:33:20 +05:00
Nikolay Kim
c657b9c2d6
Run un-readiness check in separate task (#464) 2024-11-10 16:47:33 +05:00
Nikolay Kim
5700a50f56
Fix un-needed wakeups for unready future (#462) 2024-11-10 14:41:51 +05:00
Nikolay Kim
ddbc4a722d
Optimize readiness handling (#457) 2024-11-04 18:18:15 +05:00
Nikolay Kim
011e9cdfea
Added Service::not_ready() method (#449) 2024-11-02 12:49:49 +05:00
Nikolay Kim
fc67031a3a
Fix shared readiness notification (#445) 2024-10-31 15:31:37 +05:00
Nikolay Kim
5429eb7d24
Introduce PipelineTag, which allows to notify pipeline binding (#441) 2024-10-19 09:42:28 +09:00
Nikolay Kim
effce6915f
Notify readiness waiters if ready call get dropped (#431) 2024-09-29 16:39:26 +05:00
Nikolay Kim
dec6ab083a
Use "async fn" for Service::ready() and Service::shutdown() methods (#361) 2024-05-28 16:37:16 +05:00
Nikolay Kim
d393d87164
Refactor worker management (#312) 2024-03-23 07:17:04 +01:00
Nikolay Kim
b19cb340a7
Add fmt::Debug impl for PipelineCall (#295) 2024-02-07 04:29:35 -06:00
Nikolay Kim
5869141954
Various cleanups (#282) 2024-01-09 19:35:38 +06:00
Nikolay Kim
412944e973 Prepare release 2024-01-07 20:26:26 +06:00
Nikolay Kim
a9d5845005 Use async fn in trait for Service definition 2024-01-07 11:32:41 +06:00
Nikolay Kim
c011bc68c3
Use From<T::Error> for apply_fn util (#225)
* Use From<T::Error> for apply_fn util
2023-09-20 00:42:23 +06:00
Nikolay Kim
02e111d373
Add missing fmt::Debug impls (#224)
* Add missing fmt::Debug impls
2023-09-11 21:43:07 +06:00
Nikolay Kim
996f2afdb7 Use Pipeline<T> instead of ApplyService<T> 2023-08-14 16:23:10 +06:00
Nikolay Kim
17ffaf105e
Add .apply_fn() for chain and chain factory (#220)
* Add .apply_fn() for chain and chain factory
2023-08-12 17:55:00 +06:00
Nikolay Kim
594bf0a8e2
Refactor pipeline call impl (#219)
* Refactor pipeline call impl
2023-08-10 22:10:02 +06:00
Will Brown
eea5b3b539
Synchronized buffer (#216)
* added a new function to servicecall to allow only advancing to the service call and then returning the service response future
* buffer can maintain order/backpressure by implementing strict readiness and synchronous calling
* buffer can flush in order or cancel pending buffered futures on shutdown
2023-06-26 09:19:56 +06:00
Nikolay Kim
4380b3a155
PipelineCall is static (#215)
* PipelineCall is static

* Fix static lifetimes req
2023-06-23 23:11:16 +06:00
Nikolay Kim
1fd6311a5d Update changes 2023-06-22 18:43:25 +06:00
Nikolay Kim
589b48f073 Link apply_fn service readiness with parent 2023-06-21 10:24:16 +06:00
Nikolay Kim
ea14e8f0f4
Add ContainerCall future (#213)
* Add Container::static_call(), returns future that is suitable for spawning into runtime

* Remove unsafe from h1 dispatcher

* Make call_nowait public

* Update MSRV
2023-06-21 10:21:43 +06:00
Nikolay Kim
50528b11ff
Remove Deref for Container<T> (#212) 2023-06-19 22:31:07 +06:00
Nikolay Kim
108e2ac20a Rename Ctx to ServiceCtx 2023-06-19 18:47:15 +06:00
Nikolay Kim
1b199712a9 Update versions 2023-06-16 20:32:52 +06:00
Nikolay Kim
274488bd84 Remove boxed rc service 2023-06-16 00:16:14 +06:00
Nikolay Kim
0e1f0b5f73 Service container (#208)
* Enforce service readiness during call
* Introduce service sharable readiness
2023-06-16 00:16:14 +06:00
Nikolay Kim
44ff6a8ee6
Remove Rc<S> where S: Service as it brakes readiness check validity (#198)
* Add SharedService, a service that can be checked for readiness by multiple tasks
2023-04-14 09:48:27 -07:00
Nikolay Kim
7abd4a61f8 Prepare release 2023-01-24 08:46:56 +01:00
leone
251e63063e
[FEATURE] FnShutdown service with on_shutdown callback (#163)
* FnShutdown service with on_shutdown callback
2023-01-24 08:42:31 +01:00
Nikolay Kim
a54f6f7ac2 Prepare release 2022-12-28 13:02:24 +01:00
Nikolay Kim
537d8dc18d
Use GAT (#153)
* Rename Transform to Middleware

* Drop FnService's shutdown helper

* refactor Service trait to use GAT

* Migrate ntex to new service

* move Stack to service

* use BoxFuture

* simplify poll_shitdown method
2022-12-26 19:58:38 +01:00
Nikolay Kim
0f28860fed make AndThenFactory::new public 2022-07-07 21:56:27 +06:00
Nikolay Kim
073ea6db29 prep release 2022-07-07 10:30:38 +06:00
Nikolay Kim
97c99c7b3d prep release 2022-07-07 10:29:19 +06:00
Nikolay Kim
4a642901a1 Make AndThenFactory::new() public, cleanups 2022-02-10 17:05:36 +06:00
Nikolay Kim
bf808d4d18
Move util services to ntex-util (#89)
* move util services to ntex-util

* update versions
2022-01-03 21:59:35 +06:00
Nikolay Kim
7e6735a044 Remove fn_transform 2021-12-30 16:45:45 +06:00
Nikolay Kim
7751e944f4 proper handling for openssl ZERO_RETURN error 2021-12-28 12:26:51 +06:00
Nikolay Kim
359d94fd5a ServiceFactory takes config type as a type parameter instead of an associated type 2021-12-24 03:52:57 +06:00
Nikolay Kim
b07928faed Service now takes the the request type as a type parameter instead of an associated type 2021-12-23 23:22:11 +06:00
Nikolay Kim
f49a0b8de2 Simplify fn_transform 2021-09-17 10:40:13 +06:00
Nikolay Kim
fe13bf8281 refactor Transform trait 2021-09-15 21:47:19 +06:00
Nikolay Kim
b4b6f2fe88 simplify Transform trait; add PipelineFactory::apply() combinator 2021-08-26 11:29:11 +06:00
Nikolay Kim
3e480c0423 Add rc wrapped service RcService 2021-06-03 14:29:26 +06:00
Nikolay Kim
c3540207e3 Move utils to ntex-util crate 2021-04-11 12:15:40 +06:00
Nikolay Kim
8b3655457b prep release 2021-04-03 22:49:09 +06:00
Nikolay Kim
d56309c64f add custom Ready and Lazy futures 2021-04-02 20:40:59 +06:00