Description Usage Arguments Details
A low-level interface to Java and Spark. These functions are exported for programmers who want to interact with Spark directly. See https://spark.apache.org/docs/latest/api/java/index.html?org/apache/spark/sql/Dataset.html.
1 2 3 4 5 6 7 8 9 | call_method(jobj, method, ...)
call_static(class, method, ...)
call_method_handled(jobj, method, ...)
new_jobj(class, ...)
call_static_handled(class, method, ...)
|
jobj |
a valid |
method |
character, the method being invoked |
... |
any other arguments to be passed on |
class |
character, the class being invoked |
The difference between handled
calls and other calls is
that handled calls capture JVM exceptions more effectivly. They are used
in settings where the success of an operation is not assured. Practically
speaking, the handled calls are thin wrappers of the non-handled calls.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.