Argument with ref keyword

This article provides an introduction to cross-technology invocation of both static and instance methods which contains argument of type ref. Parameter modifier ref in C# (.NET) technology is used in a method signature to pass an argument by reference. It is described in details in this article.

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.

With Javonet you can interact with methods with ref parameter modifier from NodeJs package like they were available in any language but invocation must be performed through Javonet SDK API. Javonet allows you to pass any any language value type as argument to method from NodeJs package. For reference type arguments (instances of other classes) you can create such instance with Javonet and pass the Invocation Context variable referencing that object as argument of static method invocation.

Custom NodeJs package with ref argument

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

Snippet below represents the sample code from NodeJs package which contains methods with ref parameter modifier.

This snippet doesn't support selected combination of technologies.

It is possible to invoke the declared methods from NodeJs package using following any language code:

I code in:

Select language you code in:

This snippet uses in memory runtime bridging to load the NodeJs package and next retrieves reference to specific type.

Next, two reference type arguments are created. An argument that is passed to a ref parameter must be initialized before it's passed to a method. Two ways of initialization are presented in create values for ref section of the snippet.
Fist argument (refValue1) is initialized using asRef() method with default type of passed value (int). This type matches the type of parameter in RefSampleMethod(ref int x) method.
Second argument (refValue2) is initialized using asRef() method with specifying the exact type which should be use. "System.Int32" is an alias for int.

Both values can be passed to RefSampleMethod(ref int x) method using invokeStaticMethod(...).execute() invocation.

Each reference type argument is get as regular any language value using getRefValue() and can be used for further processing.

Custom NodeJs package with multiple ref arguments

It is possible to invoke the declared method which contains multiple ref arguments from NodeJs package using following any language code:

I code in:

Select language you code in:

This snippet uses in memory runtime bridging to load the NodeJs package and next retrieves reference to specific type.

Next, three reference type arguments are created. An argument that is passed to a ref parameter must be initialized before it's passed to a method. Two ways of initialization are presented in create values for ref section of the snippet.
Fist argument (refToInt) is initialized using asRef() method with default type of passed value (int). This type matches the type of first parameter in RefSampleMethod2 method.
Second value (refToDouble) is initialized using asRef() method with specifying the exact type which should be used. "System.Double" is an alias for double.
Third argument (refToString) is initialized using asRef() method with default type of passed value (string).

All three arguments are processed in RefSampleMethod2 and changed. Their values are obtained using getRefValue() method.

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.