Questions tagged [ischedulingservice]
5 questions
2
votes
2 answers
java: can't use constructors in abstract class
I created the following abstract class for job scheduler in red5:
package com.demogames.jobs;
import com.demogames.demofacebook.MysqlDb;
import org.red5.server.api.IClient;
import org.red5.server.api.IConnection;
import…

ufk
- 30,912
- 70
- 235
- 386
1
vote
2 answers
Java: addScheduledJobAfterDelay() - can I force a scheduled job to start?
I'm developing a poker game. On the betting stage I create a scheduled job using Red5 iSchedulingService that will run every 8 seconds to forward to the next player to place a bet. Now if the user placed a bet before the 8 seconds are over, I want…

ufk
- 30,912
- 70
- 235
- 386
0
votes
0 answers
scheduling between two members of my community
we have social media application and we have video calling but often the other person is not on the app so the call doesn't go through. so just like calendy does for my business i want to allow members to send create a mutually good time to…
0
votes
1 answer
Best algorithm for scheduling interviews
I want to think about the best algorithm which let the interviewer meet maximum number of candidates.
Suppose that there are n candidates and one interviewer. Each of interview will be held for a fixed time, so we can consider that each interview to…

iyui
- 31
- 4
0
votes
1 answer
java: remove current scheduled job in a class that implements IScheduledJob
In the execution of the scheduled job itself i want to stop it from being executed again and again, how can i do so without having the string that i received when i created the job in the first place ?
public class UfkJob implements IScheduledJob…

ufk
- 30,912
- 70
- 235
- 386