Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make a multiplayer game where many calculations are done on the server with multiple clients. How could I have my server listen for new clients, while calculating for the game. Everything I have tried pauses the entire program while it runs ServerSocket.accept(). Is there any way around this? Thanks in advance.

share|improve this question

closed as too localized by EJP, thkala, mpapis, home, Radu Murzea Jan 13 at 13:32

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 2 down vote accepted

Either the game loop or ServerSocket.accept() should be handled in its own Thread, while the other runs in the main thread.

share|improve this answer
I added put my code in like this, but the second one never runs. 'public static void main(String[] args){ new Thread(new computations()); new Thread(new acceptingClients()); }' – Lolmister Jan 13 at 6:01
You need to call start() on your threads. They will then spin up a thread that will execute run() in your Runnable classes. – Alex DiCarlo Jan 13 at 6:08
Wait, never mind. It was caused by another issue. Thank you! – Lolmister Jan 13 at 6:13

Not the answer you're looking for? Browse other questions tagged or ask your own question.