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

org.enodeframework.messaging.impl.DoNothingPublisher Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package org.enodeframework.messaging.impl;

import org.enodeframework.messaging.IMessage;
import org.enodeframework.messaging.IMessagePublisher;

import java.util.concurrent.CompletableFuture;

/**
 * @author [email protected]
 */
public class DoNothingPublisher implements IMessagePublisher {
    private static final CompletableFuture SUCCESSRESULTTASK = CompletableFuture.completedFuture(null);

    @Override
    public CompletableFuture publishAsync(TMessage message) {
        return SUCCESSRESULTTASK;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy