Casting

This article provides an introduction to cross-technology handling of casting mechanism. Casting is necessary in statically-typed languages like C, C++, Java, and C#, where the data type of a variable is known at compile time. In these languages, if you want to assign a value of one type to a variable of another type, you need to perform a cast.

For example, if you have an integer and you want to use it as a float, you would need to cast it to a float. This is done because different data types may be represented differently in memory, and casting ensures that the data is interpreted correctly.

In contrast, dynamically-typed languages like Python or JavaScript perform most of the casting automatically, and explicit casting is less common.

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 objects and methods from any runtime like they were available in Perl but invocation must be performed through Javonet SDK API.

Custom any runtime showing casting

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

Snippet below represents the sample code from any runtime which contains a few methods with the same name but different parameter type. Each of these methods can perform different logic so it is necessary to invoke intended method.

Select technology of module you want to use:

It is possible to invoke each of these methods by casting the value from perl to proper type specified in any runtime.

Select technology of module you want to use:

In the snippet above, user intended to invoke CastSampleMethod with argument of specific type. Value from perl has been casted to proper type and passed to CastSampleMethod. Second example shows the same steps but for different parameter type.

Select technology of module you want to use:

In the snippet above, user intended to invoke CastSampleMethod with argument of specific type. Value from perl has been casted to proper type and passed to CastSampleMethod.

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 any runtime 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.