Create instance and call instance method

This article provides an introduction to cross-technology creation of instances of classes and invocation of instance methods.

With Javonet you can interact with classes from .NET DLL like they were available in Perl but invocation must be performed through Javonet SDK API, passing type and method name as string.

Javonet allows you to pass any Perl value type as argument to instance method from .NET DLL. In example: int, float, string, char, long and other. 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.

Using custom .NET DLL

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

This section present sample custom .NET DLL with class declaring methods and Javonet SDK syntax required to create object and invoke that methods and consume the results in Perl.

Snippet below represents the sample code from .NET DLL which contains class and its methods:

public static int MultiplyByTwo(int a)
{
	return 2 * a;
}

public int MultiplyTwoNumbers(int a, int b)
{
	return a * b;
}

It is possible to invoke one of the declared instance methods from .NET DLL using following Perl code.

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

# create NETCORE runtime context
my $called_runtime = Javonet->in_memory()->netcore();

# set up variables
my $library_path = "${resources_directory}/TestClass.dll";
my $class_name = "TestClass.TestClass";

# load NETCORE custom library
$called_runtime->load_library($library_path);

# get type from the runtime
my $netcore_type = $called_runtime->get_type($class_name)->execute();

# create type's instance
my $instance = $netcore_type->create_instance()->execute();

# invoke instance's method
my $response = $instance->invoke_instance_method("MultiplyTwoNumbers", 5, 4)->execute();

# get value from response
my $result = $response->get_value();

# print result to console
print("$result\n");

In code snippet above you can see how easily you can activate Javonet and instruct it using inMemory() method to create new RuntimeContext that will run net-dll runtime within your current process. Next with addLibrary method it triggers the load of required net-dll module and allows you to interact with any classes and their methods defined in that package.

Further call to createInstance() allows to create instance of class. Calls to invokeInstanceMethod() allows to call "multiplyTwoNumbers" net-dll instance method and pass the value type arguments. With Javonet you can invoke methods with any number and any type of arguments including value type arguments, reference type arguments, arrays and collections.

You can receive and further process and type of result returned by called net-dll method, regardless if it is reference type that will get returned as another instance of Invocation Context that you can use for further interaction, or value type that you can obtain as perl value with getValue() method.

Using framework .NET DLL

The same steps are required to use types and methods from standard .NET DLL:

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

# create NETCORE runtime context
my $called_runtime = Javonet->in_memory()->netcore();

# get type from the runtime
my $netcore_type = $called_runtime->get_type("System.DateTime")->execute();

# create type's instance
my $instance = $netcore_type->create_instance(2022, 9, 1)->execute();

# invoke instance's method
my $response = $instance->invoke_instance_method("ToShortDateString")->execute();

# get value from response
my $result = $response->get_value();

# print result to console
print("$result\n");

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 .NET DLL 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.