use of com.hazelcast.collection.IQueue in project hazelcast by hazelcast.
the class ClientQueueTest method testPoll_whenInterruptedWhileBlocking.
@Test(expected = InterruptedException.class)
public void testPoll_whenInterruptedWhileBlocking() throws InterruptedException {
IQueue queue = client.getQueue(randomString());
interruptCurrentThread(2000);
queue.poll(1, TimeUnit.MINUTES);
}
use of com.hazelcast.collection.IQueue in project hazelcast by hazelcast.
the class ClientTxnQueueTest method testTransactionalOfferRoleBack.
@Test
public void testTransactionalOfferRoleBack() {
final String name = randomString();
final IQueue queue = client.getQueue(name);
final TransactionContext context = client.newTransactionContext();
context.beginTransaction();
TransactionalQueue<String> qTxn = context.getQueue(name);
qTxn.offer("ITEM");
context.rollbackTransaction();
assertEquals(0, queue.size());
}
use of com.hazelcast.collection.IQueue in project hazelcast by hazelcast.
the class Invocation_BlockingTest method sync_whenInterruptionDuringBlockingOp.
@Test
public void sync_whenInterruptionDuringBlockingOp() throws InterruptedException {
HazelcastInstance hz = createHazelcastInstance();
final IQueue queue = hz.getQueue(randomName());
final CountDownLatch latch = new CountDownLatch(1);
final AtomicBoolean interruptedFlag = new AtomicBoolean(false);
final OpThread thread = new OpThread("Queue-Poll-Thread", latch, interruptedFlag) {
protected void doOp() throws InterruptedException {
assertNotNull(queue.poll(1, TimeUnit.MINUTES));
}
};
thread.start();
Thread.sleep(5000);
thread.interrupt();
queue.offer("item");
assertTrue(latch.await(1, TimeUnit.MINUTES));
if (thread.isInterruptionCaught()) {
assertFalse("Thread interrupted flag should not be set!", interruptedFlag.get());
assertFalse("Queue should not be empty!", queue.isEmpty());
} else {
assertTrue("Thread interrupted flag should be set! " + thread, interruptedFlag.get());
assertTrue("Queue should be empty!", queue.isEmpty());
}
}
use of com.hazelcast.collection.IQueue in project hazelcast by hazelcast.
the class ClientTxnQueueTest method testTransactionalQueueGetsOfferedItems_whenBlockedOnPoll.
@Test
public void testTransactionalQueueGetsOfferedItems_whenBlockedOnPoll() throws InterruptedException {
final String item = "offered1";
final String queueName = randomString();
final IQueue queue1 = client.getQueue(queueName);
final CountDownLatch justBeforeBlocked = new CountDownLatch(1);
new Thread() {
public void run() {
try {
justBeforeBlocked.await();
sleepSeconds(1);
queue1.offer(item);
} catch (InterruptedException e) {
fail("failed" + e);
}
}
}.start();
final TransactionContext context = client.newTransactionContext();
context.beginTransaction();
TransactionalQueue txnQueue1 = context.getQueue(queueName);
justBeforeBlocked.countDown();
Object result = txnQueue1.poll(5, TimeUnit.SECONDS);
assertEquals("TransactionalQueue while blocked in pol should get item offered from client queue", item, result);
context.commitTransaction();
}
use of com.hazelcast.collection.IQueue in project hazelcast by hazelcast.
the class ClientTxnQueueTest method testTransactionalPeek.
@Test
public void testTransactionalPeek() {
final String item = "offered";
final String queunName = randomString();
final IQueue queue = client.getQueue(queunName);
final TransactionContext context = client.newTransactionContext();
context.beginTransaction();
TransactionalQueue txnQueue = context.getQueue(queunName);
txnQueue.offer(item);
assertEquals(item, txnQueue.peek());
assertEquals(item, txnQueue.peek());
context.commitTransaction();
}
Aggregations