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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| _________ _____ __________________ _____ | |
| __ ____/___________(_)______ /__ ____/______ ____(_)_______ | |
| _ / __ __ ___/__ / _ __ / _ / __ _ __ `/__ / __ __ \ | |
| / /_/ / _ / _ / / /_/ / / /_/ / / /_/ / _ / _ / / / | |
| \____/ /_/ /_/ \_,__/ \____/ \__,_/ /_/ /_/ /_/ | |
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
| mport org.apache.ignite.Ignite; | |
| import org.apache.ignite.IgniteCache; | |
| import org.apache.ignite.cache.CacheInterceptorAdapter; | |
| import org.apache.ignite.cache.query.SqlQuery; | |
| import org.apache.ignite.cluster.ClusterNode; | |
| import org.apache.ignite.resources.IgniteInstanceResource; | |
| import org.jetbrains.annotations.Nullable; | |
| import javax.cache.Cache; |
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 org.apache.ignite.Ignite; | |
| import org.apache.ignite.cache.CacheInterceptorAdapter; | |
| import org.apache.ignite.cluster.ClusterNode; | |
| import org.apache.ignite.resources.IgniteInstanceResource; | |
| import org.jetbrains.annotations.Nullable; | |
| import javax.cache.Cache; | |
| import static com.romeh.failover.demo.CacheNames.ICEP_JOBS; |
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 { |
NewerOlder