use of com.birbit.android.jobqueue.messaging.message.CommandMessage in project android-priority-jobqueue by yigit.
the class JobManagerThread method run.
@Override
public void run() {
messageQueue.consume(new MessageQueueConsumer() {
@Override
public void handleMessage(Message message) {
canScheduleConstraintChangeOnIdle = true;
switch(message.type) {
case ADD_JOB:
handleAddJob((AddJobMessage) message);
break;
case JOB_CONSUMER_IDLE:
boolean busy = consumerManager.handleIdle((JobConsumerIdleMessage) message);
if (!busy) {
invokeSchedulersIfIdle();
}
break;
case RUN_JOB_RESULT:
handleRunJobResult((RunJobResultMessage) message);
break;
case CONSTRAINT_CHANGE:
boolean handled = consumerManager.handleConstraintChange();
ConstraintChangeMessage constraintChangeMessage = (ConstraintChangeMessage) message;
canScheduleConstraintChangeOnIdle = handled || !constraintChangeMessage.isForNextJob();
break;
case CANCEL:
handleCancel((CancelMessage) message);
break;
case PUBLIC_QUERY:
handlePublicQuery((PublicQueryMessage) message);
break;
case COMMAND:
handleCommand((CommandMessage) message);
break;
case SCHEDULER:
handleSchedulerMessage((SchedulerMessage) message);
break;
}
}
@Override
public void onIdle() {
JqLog.v("joq idle. running:? %s", running);
if (!running) {
return;
}
if (!canScheduleConstraintChangeOnIdle) {
JqLog.v("skipping scheduling a new idle callback because looks like last one" + " did not do anything");
return;
}
Long nextJobTimeNs = getNextWakeUpNs(true);
// TODO check network should be another message which goes idle if network is the
// same as now
JqLog.d("Job queue idle. next job at: %s", nextJobTimeNs);
if (nextJobTimeNs != null) {
ConstraintChangeMessage constraintMessage = messageFactory.obtain(ConstraintChangeMessage.class);
constraintMessage.setForNextJob(true);
messageQueue.postAt(constraintMessage, nextJobTimeNs);
} else if (scheduler != null) {
// if we have a scheduler but the queue is empty, just clean them all.
if (shouldCancelAllScheduledWhenEmpty && persistentJobQueue.count() == 0) {
shouldCancelAllScheduledWhenEmpty = false;
scheduler.cancelAll();
}
}
}
});
}
use of com.birbit.android.jobqueue.messaging.message.CommandMessage in project android-priority-jobqueue by yigit.
the class DelayedMessageBagRecycleTest method recycleOnClear.
@Test
public void recycleOnClear() {
CommandMessage cm = factory.obtain(CommandMessage.class);
cm.set(CommandMessage.POKE);
bag.add(cm, 1000);
bag.clear();
verify(factory).release(cm);
}
use of com.birbit.android.jobqueue.messaging.message.CommandMessage in project android-priority-jobqueue by yigit.
the class DelayedMessageBagRecycleTest method recycleOnCancel.
@Test
public void recycleOnCancel() {
final CommandMessage cm = factory.obtain(CommandMessage.class);
cm.set(CommandMessage.POKE);
bag.add(cm, 1000);
final CommandMessage cm2 = factory.obtain(CommandMessage.class);
cm2.set(CommandMessage.POKE);
bag.add(cm2, 1000);
bag.removeMessages(new MessagePredicate() {
@Override
public boolean onMessage(Message message) {
return message == cm;
}
});
verify(factory).release(cm);
verify(factory, times(0)).release(cm2);
}
use of com.birbit.android.jobqueue.messaging.message.CommandMessage in project android-priority-jobqueue by yigit.
the class DelayedMessageBagRemoveTest method add.
private Message add(long readyNs) {
CommandMessage msg = factory.obtain(CommandMessage.class);
bag.add(msg, readyNs);
added.put(readyNs, msg);
return msg;
}
use of com.birbit.android.jobqueue.messaging.message.CommandMessage in project android-priority-jobqueue by yigit.
the class JobManager method destroy.
/**
* Destroys the JobManager. You cannot make any calls to this JobManager after this call.
* Useful to be called after your tests.
*
* @see #stopAndWaitUntilConsumersAreFinished()
*/
public void destroy() {
JqLog.d("destroying job queue");
stopAndWaitUntilConsumersAreFinished();
CommandMessage message = messageFactory.obtain(CommandMessage.class);
message.set(CommandMessage.QUIT);
messageQueue.post(message);
jobManagerThread.callbackManager.destroy();
}
Aggregations