pub struct Executor { /* private fields */ }
Expand description

Thread attachment manager. It allows to execute closures in attached threads with automatic local references management done with with_local_frame. It combines the performance benefits of permanent attaches whilst removing the risk of local references leaks if used consistently.

Although all locals are freed on closure exit, it might be needed to manually free locals inside the closure if an unbounded number of them is created (e.g., in a loop). See “Local Reference Management” for details.

Threads using the Executor are attached on the first invocation as daemons, hence they do not block JVM exit. Finished threads detach automatically.

Example


let exec = Executor::new(jvm);

let val: jint = exec.with_attached(|env| {
   let x = JValue::from(-10);
   let val: jint = env.call_static_method("java/lang/Math", "abs", "(I)I", &[x])?
     .i()?;
   Ok(val)
})?;

assert_eq!(val, 10);

Implementations

Creates new Executor with specified JVM.

Executes a provided closure, making sure that the current thread is attached to the JVM. Additionally ensures that local object references are freed after call.

Allocates a local frame with the specified capacity.

Executes a provided closure, making sure that the current thread is attached to the JVM. Additionally ensures that local object references are freed after call.

Allocates a local frame with the default capacity.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.