Get Java value from Ruby package

The GetValue method is used to retrieve the result of an operation performed by the Javonet API.

// use activate only once in your app
Javonet.activate("your-license-key");

// create called runtime context
RuntimeContext calledRuntime = Javonet.inMemory().ruby();

// construct an invocation context - this invocationContext in non-materialized
InvocationContext invocationContext = calledRuntime.getType("Math").invokeStaticMethod("sqrt", 2500);

// execute invocation context - this will materialize the invocationContext
InvocationContext response = invocationContext.execute();

// get value from response
double result = (double) response.getValue();

// write result to console
System.out.println(result);

Commands are becoming nested through each invocation of methods on Invocation Context. Each invocation triggers the creation of new Invocation Context instance wrapping the current command with new parent command valid for invoked method.

Developer can decided on any moment of the materialization for the context taking full control of the chunks of the expression being transferred and processed on target runtime.