• Home
  • Raw
  • Download

Lines Matching +full:rust +full:- +full:executor

7 … would cause undefined behavior. See [issue #392](https://github.com/jni-rs/jni-rs/issues/392) for…
14 ```rust
19 -> jstring {
31 ```rust
34 -> Result<()> {
45 When using `JNIEnv::with_local_frame`, `Executor::with_attached`, or `Executor::with_attached_capac…
47 ```rust
58 _Note: This also applies to `Executor::with_attached` and `Executor::with_attached_capacity` which …
71 ```rust
76 ```rust
80 …lse return a `GlobalRef` instead. (This approach works reasonably well in Rust, compared to C, bec…
87 ```rust
112 ```rust
124 …a classes no longer leak local references ([#109](https://github.com/jni-rs/jni-rs/issues/109)), s…
131 ```rust
152 ```rust
173 …ad the Java Virtual Machine at run time, using the [java-locator](https://crates.io/crates/java-lo…
179-Windows platforms, it is no longer necessary for the Java runtime's `lib` folder to be on the sha…
186 … like this, please post a comment on [issue #403](https://github.com/jni-rs/jni-rs/issues/403) exp…
190 - `Desc` is now an `unsafe trait`. The safety requirements haven't actually changed, but they were …
192 - `Desc` now has an associated type, `Output`, which is now the type returned by the `lookup` metho…
208 ```rust
221 ```rust
237 … `JNIEnv::get_string_unchecked`. See [issue #372](https://github.com/jni-rs/jni-rs/pull/372) for d…
243 - `new_<type>_array`
244 - `get_array_length`
245 - `get_object_array_element`
246 - `set_object_array_element`
247 - `get_<type>_array_region`
248 - `set_<type>_array_region`
249 - `get_array_elements`
250 - `get_<type>_array_elements` (all removed)
251 - `get_primitive_array_elements` (also renamed to `get_array_elements_critical`)
262 There are the following type-specific aliases for `JPrimitiveArray<T>`:
263 - `JBooleanArray`
264 - `JByteArray`
265 - `JCharArray`
266 - `JShortArray`
267 - `JIntArray`
268 - `JLongArray`
269 - `JFloatArray`
270 - `JDoubleArray`
287 ```rust