Hi there,
I am calling following C# method to Query all the available sessions at the moment.
Code:
public static UInt32 QuerySessions(out string s)
{
Console.WriteLine("Query session entered");
StringBuilder Data = new StringBuilder(312);
Data.Append(' ', 312);
UInt32 rc = 0;
UInt32 f = HA_QUERY_SESSIONS;
UInt32 l = 312;
UInt32 r = EhllapiFunc.hllapi(out f, Data, out l, out rc);
Console.WriteLine("Query session Exit");
s = Data.ToString();
return r;
}
I am calling this from one timer after defined time.
Let say I have two running Rumba session open at the moment. I successfully get data from above API.
If I close existing Rumba Emulator window. the code inside timer hang on the the API call for infinite time .
I an wondering why it stops. What is the dependency with the existing sessions. Please suggest work around for the same.
#Rumba9.5
#Rumba




