
com.zoomulus.flow.ReplyingNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flow Show documentation
Show all versions of flow Show documentation
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