aboutsummaryrefslogtreecommitdiffstats
path: root/container-messagebus/src/main/java/com/yahoo/messagebus/jdisc/test/MessageQueue.java
blob: 09f7125c6492ad011e5d80b89c96f0598a9d383b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus.jdisc.test;

import com.yahoo.messagebus.Message;
import com.yahoo.messagebus.MessageHandler;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;

/**
 * @author Simon Thoresen Hult
 */
public class MessageQueue implements MessageHandler {

    private final BlockingQueue<Message> queue = new LinkedBlockingQueue<>();

    @Override
    public void handleMessage(Message msg) {
        queue.add(msg);
    }

    public Message awaitMessage(int timeout, TimeUnit unit) throws InterruptedException {
        return queue.poll(timeout, unit);
    }

}