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

com.seven.cow.event.spring.boot.starter.service.EventService Maven / Gradle / Ivy

package com.seven.cow.event.spring.boot.starter.service;

import com.seven.cow.event.spring.boot.starter.service.impl.EventMsgTypeRef;

public interface EventService {

    void publish(String eventCode, Object message);

     void publish(String eventCode, Object message, EventMsgTypeRef messageType);

    void publish(String eventCode, Object message, String messageType, boolean isAsync);

    void registerHandler(String eventCode, String messageType, EventRunnable runnable);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy