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

dev.soffa.foundation.message.MessageHandler Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.message;


import java.util.Optional;

public interface MessageHandler {

    Optional handle(Message message);

}