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

org.jgroups.protocols.tom.DeliveryProtocol Maven / Gradle / Ivy

There is a newer version: 5.3.13.Final
Show newest version
package org.jgroups.protocols.tom;

import org.jgroups.Message;

/**
 * The interface that the Total Order Anycast protocol must implement. This is invoked by the delivery thread
 *
 * @author Pedro Ruivo
 * @since 3.1
 */
public interface DeliveryProtocol {

    /**
     * deliver a message
     * @param message   message to deliver
     */
    void deliver(Message message);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy