1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
// WARNING: This file was autogenerated by jni-bindgen. Any changes to this file may be lost!!! __jni_bindgen! { /// public class [RecursiveAction](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html) /// /// Required feature: java-util-concurrent-RecursiveAction #[cfg(any(feature = "all", feature = "java-util-concurrent-RecursiveAction"))] public class RecursiveAction extends crate::java::util::concurrent::ForkJoinTask { /// <init> pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::Result<__jni_bindgen::Local<'env, crate::java::util::concurrent::RecursiveAction>> { // class.path == "java/util/concurrent/RecursiveAction", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V" unsafe { let __jni_args = []; let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "<init>\0", "()V\0"); __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr()) } } // // Not emitting: Non-public method // /// [compute](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#compute()) // fn compute<'env>(&'env self) -> __jni_bindgen::Result<()> { // // class.path == "java/util/concurrent/RecursiveAction", java.flags == PROTECTED | ABSTRACT, .name == "compute", .descriptor == "()V" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "compute\0", "()V\0"); // __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } /// [getRawResult](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#getRawResult()) /// /// Required features: "java-lang-Void" #[cfg(any(feature = "all", all(feature = "java-lang-Void")))] pub fn get_raw_result<'env>(&'env self) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::Void>>> { // class.path == "java/util/concurrent/RecursiveAction", java.flags == PUBLIC | FINAL, .name == "getRawResult", .descriptor == "()Ljava/lang/Void;" unsafe { let __jni_args = []; let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "getRawResult\0", "()Ljava/lang/Void;\0"); __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) } } // // Not emitting: Non-public method // /// [setRawResult](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#setRawResult(java,%2520lang,%2520Void)) // /// // /// Required features: "java-lang-Void" // #[cfg(any(feature = "all", all(feature = "java-lang-Void")))] // fn set_raw_result<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Void>>) -> __jni_bindgen::Result<()> { // // class.path == "java/util/concurrent/RecursiveAction", java.flags == PROTECTED | FINAL, .name == "setRawResult", .descriptor == "(Ljava/lang/Void;)V" // unsafe { // let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())]; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "setRawResult\0", "(Ljava/lang/Void;)V\0"); // __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } // // Not emitting: Non-public method // /// [exec](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#exec()) // fn exec<'env>(&'env self) -> __jni_bindgen::Result<bool> { // // class.path == "java/util/concurrent/RecursiveAction", java.flags == PROTECTED | FINAL, .name == "exec", .descriptor == "()Z" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "exec\0", "()Z\0"); // __jni_env.call_boolean_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } // // Not emitting: Non-public method // // Not emitting: Bridge method - type erasure // /// [setRawResult](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#setRawResult(java,%2520lang,%2520Object)) // /// // /// Required features: "java-lang-Object" // #[cfg(any(feature = "all", all(feature = "java-lang-Object")))] // fn set_raw_result<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Object>>) -> __jni_bindgen::Result<()> { // // class.path == "java/util/concurrent/RecursiveAction", java.flags == PROTECTED | BRIDGE | SYNTHETIC, .name == "setRawResult", .descriptor == "(Ljava/lang/Object;)V" // unsafe { // let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())]; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "setRawResult\0", "(Ljava/lang/Object;)V\0"); // __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } // // Not emitting: Bridge method - type erasure // /// [getRawResult](https://developer.android.com/reference/java/util/concurrent/RecursiveAction.html#getRawResult()) // /// // /// Required features: "java-lang-Object" // #[cfg(any(feature = "all", all(feature = "java-lang-Object")))] // pub fn get_raw_result<'env>(&'env self) -> __jni_bindgen::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::Object>>> { // // class.path == "java/util/concurrent/RecursiveAction", java.flags == PUBLIC | BRIDGE | SYNTHETIC, .name == "getRawResult", .descriptor == "()Ljava/lang/Object;" // unsafe { // let __jni_args = []; // let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env); // let (__jni_class, __jni_method) = __jni_env.require_class_method("java/util/concurrent/RecursiveAction\0", "getRawResult\0", "()Ljava/lang/Object;\0"); // __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr()) // } // } } }