We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a7023 commit b452326Copy full SHA for b452326
1 file changed
crates/core/src/host/v8/mod.rs
@@ -609,12 +609,12 @@ struct JsInstanceLaneState {
609
replace_lock: AsyncMutex<()>,
610
}
611
612
-#[derive(Clone)]
613
/// A single serialized execution lane for JS module work.
614
///
615
/// Callers share one active [`JsInstance`] so hot requests stay on the same
616
/// worker thread for locality. The lane only steps in on the rare path, where
617
/// a trap or disconnect forces that active worker to be replaced.
+#[derive(Clone)]
618
pub struct JsInstanceLane {
619
module: JsModule,
620
state: Arc<JsInstanceLaneState>,
0 commit comments