Retrieve array

This article shows how to retrieve array from called technology.

Javonet allows you to reference and use modules or packages written in (Java/Kotlin/Groovy/Clojure, C#/VB.NET, Ruby, Perl, Python, JavaScript/TypeScript) like they were created in your technology. If have not yet created your first project check Javonet overview and quick start guides for your technology.

Custom NodeJs package with array handling

With Javonet it is possible to reference any custom NodeJs package and interact with arrays declared on types defined within that module almost the same as with any other Python library.

Snippet below represents the sample code from NodeJs package that has methods which return or process the arrays:

get1DArray() {
	return ["one", "two", "three", "four", "five"]
}

get2DArray() {
	return [["S00", "S01"], ["S10", "S11"]]
}
addArrayElementsAndMultiply(myArray, myValue) {
	return myArray.reduce((accumulator, currentValue) => accumulator + currentValue) * myValue
}

With Javonet SDK it is possible to retrieve array from called technology and cast it to Python array.

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

# create called runtime context
called_runtime = Javonet.in_memory().nodejs()

# set up variables
library_path = resources_directory + '/TestClass.js'
class_name = 'TestClass'

# load custom library
called_runtime.load_library(library_path)

# get type from the runtime
called_runtime_type = called_runtime.get_type(class_name).execute()

# create type's instance
instance = called_runtime_type.create_instance().execute()

# invoke instance's method
array_reference = instance.invoke_instance_method("get1DArray").execute()

# get value from array reference
result = array_reference.retrieve_array()

# write result to console
print(result)

In the snippet above, get1DArray method is used to get reference to 1D array from NodeJs package. Method retrieveArray is used to get the whole array from called technology and save it to local variable.

The same operation can be performed remotely by just changing the new Runtime Context invocation from in memory to tcp that will create and interact with your NodeJs package objects on any remote node, container or service that hosts Javonet Code Gateway. This way you can preserve the same logic in your application and instantly switch between monolithic and microservices architecture without the need to implement the integration layer based on web services or other remote invocation methods.

Read more about use cases and software architecture scenarios where Javonet runtime bridging technology can support your development process.