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
80d20e4371
Add time::Sleep::elapse() method (#480) 2024-12-03 18:52:55 +05:00
Nikolay Kim
badf2a8cf8
Prep release (#470) 2024-11-23 22:18:12 -08:00
Nikolay Kim
98646dee57
Use Cell instead of RefCell for timer (#467) 2024-11-19 13:32:07 -08:00
Nikolay Kim
5f6600c814
Update Service trait and use unified Counter (#455) 2024-11-04 12:49:18 +05:00
Nikolay Kim
8288fc0364
Use updated Service trait (#450) 2024-11-02 17:44:35 +05:00
Nikolay Kim
0d6f348fc2
Remove must_use from condition::Waiter (#430) 2024-09-26 16:47:39 +05:00
Nikolay Kim
9b24698087
Remove mpsc::Sender::downgrade() (#397) 2024-08-19 16:30:58 +05:00
Nikolay Kim
7445f7b45a
Allow to send clonable value via Condition (#396) 2024-08-19 15:02:13 +05:00
Nikolay Kim
d81e089059
Add LocalWaker::with() helper (#387) 2024-07-30 12:40:51 +02:00
Nikolay Kim
e3dd4b3908
Add task::yield_to() helper (#375) 2024-06-26 16:12:27 +05:00
Nikolay Kim
c52db3fd10
Re-enable BufferService (#365) 2024-05-28 18:12:24 +05:00
Nikolay Kim
b04bdf41f6
Use async fn for Service::ready() and Service::shutdown() (#363) 2024-05-28 16:55:08 +05:00
Nikolay Kim
316f9083d1
Change Extensions::insert() method according doc #345 (#347) 2024-04-29 15:11:04 +05:00
Nikolay Kim
d393d87164
Refactor worker management (#312) 2024-03-23 07:17:04 +01:00
Nikolay Kim
bf0b53c630
Allow to lock readiness for Condition (#286) 2024-01-19 17:04:04 +06:00
Nikolay Kim
c864b10e62 Prepare release 2024-01-09 20:17:07 +06:00
Nikolay Kim
174b5d86f0
Refactor filter factories (#278) 2024-01-08 15:22:38 +06:00
Nikolay Kim
412944e973 Prepare release 2024-01-07 20:26:26 +06:00
Nikolay Kim
9119f997fd Migrate ntex-util to async fn in trait 2024-01-07 11:33:43 +06:00
Nikolay Kim
20e27b3f39 Prep release 2023-11-06 16:39:56 +06:00
tt rt
bf7e5f7174
Add UnwindSafe trait on Receiver<T> (#239) 2023-11-06 16:38:45 +06:00
Nikolay Kim
e4c58fa363 Prep release 2023-11-02 16:14:43 +06:00
Nikolay Kim
02e111d373
Add missing fmt::Debug impls (#224)
* Add missing fmt::Debug impls
2023-09-11 21:43:07 +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
1fd6311a5d Update changes 2023-06-22 18:43:25 +06:00
Nikolay Kim
1b199712a9 Update versions 2023-06-16 20:32:52 +06:00
Nikolay Kim
4650a41648 Update changes 2023-06-16 00:16:14 +06:00
Nikolay Kim
7960b550c9 Migrate to ntex-service 1.2 (#209)
* Migrate to ntex-service 1.2
2023-06-16 00:16:14 +06:00
Nikolay Kim
a35535da32
Refactor timer driver (#207)
* Refactor timer driver
2023-06-04 11:20:14 +06:00
Nikolay Kim
77ec745ed5
Add OneRequest service (#199)
* Add OneRequest service, service that allows to handle one request at time
2023-04-21 11:18:36 -07: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
f44cad4512 Prepare release 2023-01-04 12:19:52 +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
0217a2e835 Add BoxFuture helper type alias 2022-12-13 11:03:33 +01:00
Nikolay Kim
d947f7f08c Add Extensions::extend() and Extensions::is_empty() methods 2022-11-25 16:44:51 +01:00
Nikolay Kim
88c7fd3116
Switch to ntex-h2 for http/2 support (#120)
* switch server to ntex-h2 for http/2 support
2022-06-27 15:28:44 +06:00
Nikolay Kim
27f434797f Allow to reset time::Deadline 2022-05-25 16:48:53 +06:00
Nikolay Kim
84be13de5c Add time::Deadline future 2022-02-19 19:00:50 +06:00
Nikolay Kim
bd18c122b4 Fix update timer handle with 0 millis, do not keep old bucket 2022-02-18 15:20:40 +06:00
Nikolay Kim
2664a2e66d time::sleep() always sleeps one tick (16 millis) even for 0 millis 2022-02-17 20:35:04 +06:00
Nikolay Kim
b026e0fda7 Add Default impl to oneshots pool 2022-01-27 18:02:36 +06:00
Nikolay Kim
cb7af434ea
Optimize Millis and Io memory layout (#100)
* Optimize Millis and Io memory layout
2022-01-27 01:25:44 +06:00
Nikolay Kim
5d9a653f70
Refactor web websockets support (#97)
* Refactor ws handling
2022-01-23 19:56:56 +06:00
Nikolay Kim
14a1cd0b12 Add time::query_system_time(), it does not use async runtime 2022-01-17 21:27:49 +06:00
Nikolay Kim
fcf7022059 Add Pool::shrink_to_fit() method 2022-01-12 22:06:03 +06:00
Nikolay Kim
cb25c8d0b9 Add poll_recv/recv helper methods 2022-01-09 18:56:03 +06:00
Nikolay Kim
9cb52bd37b Add time::timeout_checked, if duration is zero then timeout is disabled 2022-01-04 18:40:38 +06:00
Nikolay Kim
fe3f810a90 update changes 2022-01-03 22:04:47 +06:00