我有以下情况
我有method1()
(本地方法)调用远程方法,而远程方法又调用method2()
带有一些参数的(本地方法)。我想在我的方法 1 中将这个输入参数传递给方法 2 设置一些数据,这些数据将我返回我的方法 2
method1 ()
{
//remote functon call
remoteFunction( input);
// i want to get the input to method2 and set the method2Output here
// so that the set method2Output will be returned mt method2()
// i want method 2 to wait till method1 gets the method2 input and sets the
// method2Output and then method2 should return the method2Output .
}
remoteFunction(Input input)
{
// some processing
method2(output)
}
public method2Output method2 (Output output)
{
// processing done my method1
return method2Output ;
}
提前致谢