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

com.zoomulus.flow.ReplyingNode Maven / Gradle / Ivy

Go to download

Flow is a library for building custom data handling state transistion machines. It is useful for things like processing input requests or parsing data.

The newest version!
package com.zoomulus.flow;

import java.util.Optional;

import com.zoomulus.flow.message.Message;

public interface ReplyingNode
{
    String name();
    boolean hasReplyTarget();
    Optional replyTarget();
    void processResponse(final Message response);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy