summaryrefslogtreecommitdiffstats
path: root/jdisc_messagebus_service/src/main/java/com/yahoo/messagebus/jdisc/test/MessageQueue.java
blob: 0269e313b51d265b5d32f4547c3361de910b530b (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 2017 Yahoo Holdings. 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 <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
 */
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);
    }

}