Skip to content

Instantly share code, notes, and snippets.

@Romeh
Created November 14, 2017 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Romeh/d60b80c559679cab037a422565ac2dc3 to your computer and use it in GitHub Desktop.
Save Romeh/d60b80c559679cab037a422565ac2dc3 to your computer and use it in GitHub Desktop.
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