We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whenever i try and ping for an active session I'm experiencing a little bit of performance drops. Is this normal?
if(Options.getData("gjUsername") != ""){ var pingTimer:FlxTimer = new FlxTimer(); pingTimer.start(30, function(_:FlxTimer){ trace("pinging.."); GJClient.pingSessions(Options.getData("gjUsername"), Options.getData("gjUserToken"), 'active', function(json:Dynamic){ trace("found session!"); }, function(message:String){ trace("No session found for: " + Options.getData("gjUsername")); trace("Retrying!..."); GJClient.openSessions(Options.getData("gjUsername"), Options.getData("gjUserToken"), function(json:Dynamic){ trace("Made a new session"); }, function(message:String) // on Failure { trace("could not open a new session"); }); }); },0); }
here is the code im using for checking for a session
The text was updated successfully, but these errors were encountered:
haxe.Http can lag when the connection is poor as it isn't async
Sorry, something went wrong.
Wait so it's my crappy internet that's causing the issue?
Yeap
That's fun
No branches or pull requests
Whenever i try and ping for an active session I'm experiencing a little bit of performance drops.
Is this normal?
here is the code im using for checking for a session
The text was updated successfully, but these errors were encountered: