mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
5b9620df7a
Implements fast scheduling of deferred op futures. ```rs #[op(fast)] async fn op_read( state: Rc<RefCell<OpState>>, rid: ResourceId, buf: &mut [u8], ) -> Result<u32, Error> { // ... } ``` The future is scheduled via a fast API call and polled by the event loop after being woken up by its waker.
10 lines
282 B
Text
10 lines
282 B
Text
=== Optimizer Dump ===
|
|
returns_result: false
|
|
has_ref_opstate: true
|
|
has_rc_opstate: false
|
|
has_fast_callback_option: true
|
|
fast_result: Some(Void)
|
|
fast_parameters: [V8Value, Uint8Array]
|
|
transforms: {1: Transform { kind: SliceU8(true), index: 1 }}
|
|
is_async: false
|
|
fast_compatible: true
|