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

io.soffa.foundation.core.pubsub.MessageHandler Maven / Gradle / Ivy

The newest version!
package io.soffa.foundation.core.pubsub;


import io.soffa.foundation.core.messages.Message;

import java.util.Optional;

public interface MessageHandler {

    Optional handle(Message message);

}