Skip to content
Snippets Groups Projects
Commit 298be7fd authored by Ernesto Corbellini's avatar Ernesto Corbellini
Browse files

Added interface to listen to client messages.

parent 0d830274
No related branches found
No related tags found
No related merge requests found
package com.github.ekumen.rosjava_actionlib;
import org.ros.internal.message.Message;
/**
* Listener interface to receive the incoming messages from the ActionLib server.
*/
public interface ActionClientListener {
void resultReceived(Message result);
void feedbackReceived(Message feedback);
void statusReceived(Message status);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment