Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created July 8, 2017 11:36
Show Gist options
  • Save khannedy/a55b16293b06568160109ac49c84eeb1 to your computer and use it in GitHub Desktop.
Save khannedy/a55b16293b06568160109ac49c84eeb1 to your computer and use it in GitHub Desktop.
package com.idspring.commandpattern.service;
import com.idspring.commandpattern.model.service.ServiceRequest;
import reactor.core.publisher.Mono;
/**
* @author Eko Kurniawan Khannedy
* @since 30/06/17
*/
public interface Command<RESULT, REQUEST extends ServiceRequest> {
Mono<RESULT> execute(REQUEST request);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment