Repository: incubator-ignite Updated Branches: refs/heads/ignite-45 a483c5b8c -> ae9357841
# IGNITE-459 Rename ComputeNodeStartup to ExampleNodeStartup. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/3ad5e42b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/3ad5e42b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/3ad5e42b Branch: refs/heads/ignite-45 Commit: 3ad5e42b28929bb6d3034e305db81b2897347289 Parents: 65d22d5 Author: sevdokimov <sevdoki...@gridgain.com> Authored: Thu Mar 12 12:55:55 2015 +0300 Committer: sevdokimov <sevdoki...@gridgain.com> Committed: Thu Mar 12 12:55:55 2015 +0300 ---------------------------------------------------------------------- .../ignite/examples/ComputeNodeStartup.java | 35 -------------------- .../ignite/examples/ExampleNodeStartup.java | 35 ++++++++++++++++++++ .../computegrid/ComputeBroadcastExample.java | 2 +- .../computegrid/ComputeCallableExample.java | 2 +- .../computegrid/ComputeClosureExample.java | 2 +- .../ComputeClusterGroupsExample.java | 2 +- .../ComputeContinuousMapperExample.java | 2 +- .../ComputeExecutorServiceExample.java | 2 +- .../ComputeFibonacciContinuationExample.java | 2 +- .../computegrid/ComputeReducerExample.java | 2 +- .../computegrid/ComputeRunnableExample.java | 2 +- .../computegrid/ComputeScheduleExample.java | 2 +- .../computegrid/ComputeTaskMapExample.java | 2 +- .../computegrid/ComputeTaskSplitExample.java | 2 +- .../montecarlo/CreditRiskExample.java | 2 +- .../ignite/examples/events/EventsExample.java | 2 +- .../examples/messaging/MessagingExample.java | 2 +- .../messaging/MessagingPingPongExample.java | 2 +- .../MessagingPingPongListenActorExample.java | 2 +- .../misc/deployment/DeploymentExample.java | 2 +- .../misc/springbean/SpringBeanExample.java | 2 +- .../examples/servicegrid/ServicesExample.java | 4 +-- .../ignite/examples/MessagingExample.java | 2 +- 23 files changed, 57 insertions(+), 57 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/ComputeNodeStartup.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/ComputeNodeStartup.java b/examples/src/main/java/org/apache/ignite/examples/ComputeNodeStartup.java deleted file mode 100644 index 7c03dad..0000000 --- a/examples/src/main/java/org/apache/ignite/examples/ComputeNodeStartup.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.examples; - -import org.apache.ignite.*; - -/** - * Starts up an empty node with example compute configuration. - */ -public class ComputeNodeStartup { - /** - * Start up an empty node with example compute configuration. - * - * @param args Command line arguments, none required. - * @throws IgniteException If failed. - */ - public static void main(String[] args) throws IgniteException { - Ignition.start("examples/config/example-compute.xml"); - } -} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/ExampleNodeStartup.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/ExampleNodeStartup.java b/examples/src/main/java/org/apache/ignite/examples/ExampleNodeStartup.java new file mode 100644 index 0000000..d02fd9c --- /dev/null +++ b/examples/src/main/java/org/apache/ignite/examples/ExampleNodeStartup.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.examples; + +import org.apache.ignite.*; + +/** + * Starts up an empty node with example compute configuration. + */ +public class ExampleNodeStartup { + /** + * Start up an empty node with example compute configuration. + * + * @param args Command line arguments, none required. + * @throws IgniteException If failed. + */ + public static void main(String[] args) throws IgniteException { + Ignition.start("examples/config/example-compute.xml"); + } +} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeBroadcastExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeBroadcastExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeBroadcastExample.java index 85ecb0f..347dd22 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeBroadcastExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeBroadcastExample.java @@ -30,7 +30,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeBroadcastExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeCallableExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeCallableExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeCallableExample.java index efc45cd..3b6fc16 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeCallableExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeCallableExample.java @@ -33,7 +33,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeCallableExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClosureExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClosureExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClosureExample.java index 9daae17..0bef390 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClosureExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClosureExample.java @@ -32,7 +32,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeClosureExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClusterGroupsExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClusterGroupsExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClusterGroupsExample.java index d4d0bc4..941543e 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClusterGroupsExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeClusterGroupsExample.java @@ -28,7 +28,7 @@ import org.apache.ignite.lang.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeClusterGroupsExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java index 9834ae1..52b1fb8 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeContinuousMapperExample.java @@ -42,7 +42,7 @@ import java.util.concurrent.atomic.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeContinuousMapperExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeExecutorServiceExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeExecutorServiceExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeExecutorServiceExample.java index e49d3a5..5c7fb7a 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeExecutorServiceExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeExecutorServiceExample.java @@ -29,7 +29,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class ComputeExecutorServiceExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java index 1dc96e5..9292dd7 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeFibonacciContinuationExample.java @@ -39,7 +39,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class ComputeFibonacciContinuationExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeReducerExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeReducerExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeReducerExample.java index 216c7b7..75f9549 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeReducerExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeReducerExample.java @@ -33,7 +33,7 @@ import java.util.concurrent.atomic.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start Ignite node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start Ignite node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeReducerExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeRunnableExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeRunnableExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeRunnableExample.java index dfd54d8..57d5777 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeRunnableExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeRunnableExample.java @@ -29,7 +29,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeRunnableExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeScheduleExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeScheduleExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeScheduleExample.java index ee4c7fd..7913a9c 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeScheduleExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeScheduleExample.java @@ -32,7 +32,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeScheduleExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java index 3532e64..3834394 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskMapExample.java @@ -36,7 +36,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeTaskMapExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskSplitExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskSplitExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskSplitExample.java index f750d45..1d3a9d3 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskSplitExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/ComputeTaskSplitExample.java @@ -34,7 +34,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class ComputeTaskSplitExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/computegrid/montecarlo/CreditRiskExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/computegrid/montecarlo/CreditRiskExample.java b/examples/src/main/java/org/apache/ignite/examples/computegrid/montecarlo/CreditRiskExample.java index e56ad60..28ac390 100644 --- a/examples/src/main/java/org/apache/ignite/examples/computegrid/montecarlo/CreditRiskExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/computegrid/montecarlo/CreditRiskExample.java @@ -29,7 +29,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class CreditRiskExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/events/EventsExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/events/EventsExample.java b/examples/src/main/java/org/apache/ignite/examples/events/EventsExample.java index 60c8b9e..1015ee2 100644 --- a/examples/src/main/java/org/apache/ignite/examples/events/EventsExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/events/EventsExample.java @@ -35,7 +35,7 @@ import static org.apache.ignite.events.EventType.*; * <p> * Remote nodes should always be started with configuration: {@code 'ignite.sh examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start * node with {@code examples/config/example-compute.xml} configuration. */ public class EventsExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingExample.java b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingExample.java index 08d5c3b..ba5fa46 100644 --- a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingExample.java @@ -36,7 +36,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class MessagingExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongExample.java b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongExample.java index b02aba2..b571196 100644 --- a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongExample.java @@ -35,7 +35,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class MessagingPingPongExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java index feeb56a..9b79eea 100644 --- a/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/messaging/MessagingPingPongListenActorExample.java @@ -33,7 +33,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public class MessagingPingPongListenActorExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java b/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java index 5eae393..22e723e 100644 --- a/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/misc/deployment/DeploymentExample.java @@ -42,7 +42,7 @@ import java.util.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-cache.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will * start node with {@code examples/config/example-compute.xml} configuration. */ public final class DeploymentExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/misc/springbean/SpringBeanExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/misc/springbean/SpringBeanExample.java b/examples/src/main/java/org/apache/ignite/examples/misc/springbean/SpringBeanExample.java index bd45add..58c17e2 100644 --- a/examples/src/main/java/org/apache/ignite/examples/misc/springbean/SpringBeanExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/misc/springbean/SpringBeanExample.java @@ -38,7 +38,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class SpringBeanExample { http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java b/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java index e1fdca7..f1916ae 100644 --- a/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java @@ -30,7 +30,7 @@ import java.util.*; * Distributed services are especially useful when deploying singletons on the ignite, * be that cluster-singleton, or per-node-singleton, etc... * <p> - * To start remote nodes, you must run {@link ComputeNodeStartup} in another JVM + * To start remote nodes, you must run {@link ExampleNodeStartup} in another JVM * which will start node with {@code examples/config/example-compute.xml} configuration. * <p> * NOTE:<br/> @@ -51,7 +51,7 @@ public class ServicesExample { if (rmts.nodes().isEmpty()) { System.err.println(">>>"); System.err.println(">>> Must start at least one remote node using " + - ComputeNodeStartup.class.getSimpleName() + '.'); + ExampleNodeStartup.class.getSimpleName() + '.'); System.err.println(">>>"); return; http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/3ad5e42b/examples/src/main/java8/org/apache/ignite/examples/MessagingExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java8/org/apache/ignite/examples/MessagingExample.java b/examples/src/main/java8/org/apache/ignite/examples/MessagingExample.java index 2127715..97b46a5 100644 --- a/examples/src/main/java8/org/apache/ignite/examples/MessagingExample.java +++ b/examples/src/main/java8/org/apache/ignite/examples/MessagingExample.java @@ -32,7 +32,7 @@ import java.util.concurrent.*; * Remote nodes should always be started with special configuration file which * enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-compute.xml'}. * <p> - * Alternatively you can run {@link ComputeNodeStartup} in another JVM which will start node + * Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node * with {@code examples/config/example-compute.xml} configuration. */ public final class MessagingExample {