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

com.github.dreamhead.moco.monitor.AbstractMonitor Maven / Gradle / Ivy

Go to download

Moco is an easy setup stub framework, mainly focusing on testing and integration.

There is a newer version: 1.5.0
Show newest version
package com.github.dreamhead.moco.monitor;

import com.github.dreamhead.moco.MocoMonitor;
import com.github.dreamhead.moco.Request;
import com.github.dreamhead.moco.Response;

public abstract class AbstractMonitor implements MocoMonitor {
    @Override
    public void onMessageArrived(final Request request) {
    }

    @Override
    public void onException(final Throwable t) {
    }

    @Override
    public void onMessageLeave(final Response response) {
    }

    @Override
    public void onUnexpectedMessage(final Request request) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy