| 421 | } |
| 422 | |
| 423 | void ContextBase::onQueueReady(uint32_t token) { |
| 424 | if (!isFailed() && wasm_->on_queue_ready_) { |
| 425 | DeferAfterCallActions actions(this); |
| 426 | wasm_->on_queue_ready_(this, id_, token); |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | void ContextBase::onGrpcReceiveInitialMetadata(uint32_t token, uint32_t elements) { |
| 431 | if (isFailed() || !wasm_->on_grpc_receive_initial_metadata_) { |