diff options
Diffstat (limited to 'core/ops_builtin.rs')
-rw-r--r-- | core/ops_builtin.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs index 2786299bf..ea85b4f00 100644 --- a/core/ops_builtin.rs +++ b/core/ops_builtin.rs @@ -28,6 +28,7 @@ crate::extension!( op_wasm_streaming_set_url, op_void_sync, op_void_async, + op_void_async_deferred, op_add, // TODO(@AaronO): track IO metrics for builtin streams op_read, @@ -99,6 +100,9 @@ pub fn op_void_sync() {} #[op] pub async fn op_void_async() {} +#[op(deferred)] +pub async fn op_void_async_deferred() {} + /// Remove a resource from the resource table. #[op] pub fn op_close( |