All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.messagebus.test.Receptor Maven / Gradle / Ivy

// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus.test;

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

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

/**
 * @author Haavard Pettersen
 */
public class Receptor implements MessageHandler, ReplyHandler {

    private final BlockingQueue msg = new LinkedBlockingQueue<>();
    private final BlockingQueue reply = new LinkedBlockingQueue<>();

    public void reset() {
        msg.clear();
        reply.clear();
    }

    public void handleMessage(Message msg) {
        this.msg.add(msg);
    }

    public void handleReply(Reply reply) {
        this.reply.add(reply);
    }

    public Message getMessage(int seconds) {
        try {
            return msg.poll(seconds, TimeUnit.SECONDS);
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
            return null;
        }
    }

    public Reply getReply(int seconds) {
        try {
            return reply.poll(seconds, TimeUnit.SECONDS);
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
            return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy