Skip to content

Instantly share code, notes, and snippets.

@mayuroks
Created July 9, 2018 16:21
Show Gist options
  • Save mayuroks/5999ba75d90aa89fb800890216e2ba19 to your computer and use it in GitHub Desktop.
Save mayuroks/5999ba75d90aa89fb800890216e2ba19 to your computer and use it in GitHub Desktop.
/**
* Service layer that connects/disconnects to the server and
* sends and receives events too.
*/
public interface EventService {
void connect(String username) throws URISyntaxException;
void disconnect();
Flowable<ChatMessage> sendMessage(ChatMessage chatMessage);
void setEventListener(EventListener eventListener);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment