Created
November 14, 2017 12:51
-
-
Save Romeh/d60b80c559679cab037a422565ac2dc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lombok.*; | |
import org.apache.ignite.cache.query.annotations.QuerySqlField; | |
//Sample job model | |
@Builder | |
@Getter | |
@Setter | |
@ToString | |
@EqualsAndHashCode | |
public class Job { | |
@QuerySqlField(index = true) | |
String nodeId; | |
Request request; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment