Skip to content

Instantly share code, notes, and snippets.

View kamalcph's full-sized avatar

Kamal Chandraprakash kamalcph

View GitHub Profile
@kamalcph
kamalcph / MyTest2.java
Last active January 10, 2020 08:36
EAR-11564 Reproducer
/*
* Copyright (c) 2016-2020 Cloudera, Inc. All rights reserved.
*
* This code is provided to you pursuant to your written agreement with Cloudera, which may be the terms of the
* Affero General Public License version 3 (AGPLv3), or pursuant to a written agreement with a third party authorized
* to distribute this code. If you do not have a written agreement with Cloudera or with an authorized and
* properly licensed third party, you do not have any rights to this code.
*
* If this code is provided to you under the terms of the AGPLv3:
* (A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY KIND;
/*
* Copyright (c) 2016-2019 Cloudera, Inc. All rights reserved.
*
* This code is provided to you pursuant to your written agreement with Cloudera, which may be the terms of the
* Affero General Public License version 3 (AGPLv3), or pursuant to a written agreement with a third party authorized
* to distribute this code. If you do not have a written agreement with Cloudera or with an authorized and
* properly licensed third party, you do not have any rights to this code.
*
* If this code is provided to you under the terms of the AGPLv3:
* (A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY KIND;
@kamalcph
kamalcph / CalcService.java
Created July 30, 2016 12:37
IgniteService accepts request before init
package my.apache.ignite.examples.servicegrid;
import org.apache.ignite.services.Service;
public interface CalcService extends Service {
int add(int a, int b);
int sub(int a, int b);
}