mapModuleFunctionWithoutParameter<T> method
Implementation
RemoteFunctionWithoutParameter<T> mapModuleFunctionWithoutParameter<T>(String targetModule,
String functionName, T returnType)
{
RemoteFunctionWithoutParameter<T> function = RemoteFunctionWithoutParameter<T>(
this._futuresHandler,
this._outputController,
makeRemoteModuleFunctionIdentifier(targetModule, functionName),
returnType
);
return function;
}