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

org.jgroups.util.MessageIterator Maven / Gradle / Ivy

package org.jgroups.util;

import org.jgroups.Message;

import java.util.Iterator;

/**
 * @author Bela Ban
 * @since  4.2.0
 */
public interface MessageIterator extends Iterator {
    /** Replaces the message at the current index with msg */
    void replace(Message msg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy