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
sourceimpl Executor
impl Executor
sourcepub fn with_attached_capacity<F, R>(&self, capacity: i32, f: F) -> Result<R> where
F: FnOnce(&JNIEnv<'_>) -> Result<R>,
pub fn with_attached_capacity<F, R>(&self, capacity: i32, f: F) -> Result<R> where
F: FnOnce(&JNIEnv<'_>) -> Result<R>,
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.
sourcepub fn with_attached<F, R>(&self, f: F) -> Result<R> where
F: FnOnce(&JNIEnv<'_>) -> Result<R>,
pub fn with_attached<F, R>(&self, f: F) -> Result<R> where
F: FnOnce(&JNIEnv<'_>) -> Result<R>,
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
Auto Trait Implementations
impl RefUnwindSafe for Executor
impl Send for Executor
impl Sync for Executor
impl Unpin for Executor
impl UnwindSafe for Executor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more