Jump to content

Question

Posted

Hello,

Some time when starting match teleport two teams to same arena. And i can't find problem.

here how work:

for (int i = 0; i < STADIUMS.length; i++)
				{
..
..
....
.....
if (STADIUMS[i].isFreeToUse()){
...
.....
.....
.......
	try
	{
       _olympiadInstances.put(i, new OlympiadGame(i, COMP_TYPE.NON_CLASSED,  nextOpponents(Olympiad.getRegisteredNonClassBased())));
       _gamesQueue.put(i, new OlympiadGameTask(_olympiadInstances.get(i)));
       STADIUMS[i].setStadiaBusy();
	}
.....
........

Why can set same stadium id? firstly it check is free or no, then if free set stadium to busy.

2 answers to this question

Recommended Posts

  • 0
Posted (edited)

frozen

 

What's your pack? maybe it's about synchronization in olympiad instances

and its synchronized

i see upper for (int i = 0; i < STADIUMS.length; i++)

public synchronized void run()
    {
Edited by wongerlt

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...