my
$connection_type
;
my
$tcp_address
;
my
$path
;
sub
new {
my
$class
=
shift
;
my
$self
= {
connection_type
=>
shift
,
tcp_address
=>
shift
,
path
=>
shift
};
$connection_type
=
$self
->{connection_type};
$tcp_address
=
$self
->{tcp_address};
$path
=
$self
->{path};
if
(
$connection_type
eq Javonet::Sdk::Internal::ConnectionType::get_connection_type(
'Tcp'
)){
if
(not(
defined
$tcp_address
||
$tcp_address
eq
""
)){
die
(
"Error: Tcp ip address must be specified"
);
}
}
bless
$self
,
$class
;
return
$self
;
}
sub
clr {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Clr'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
jvm {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Jvm'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
netcore {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Netcore'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
perl {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Perl'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
ruby {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Ruby'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
nodejs {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Nodejs'
),
$connection_type
,
$tcp_address
,
$path
);
}
sub
python {
return
Javonet::Sdk::Internal::RuntimeContext::get_instance(
Javonet::Sdk::Core::RuntimeLib::get_runtime(
'Python'
),
$connection_type
,
$tcp_address
,
$path
);
}
no
Moose;
1;