Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6872B17ABE for ; Tue, 7 Apr 2015 22:55:13 +0000 (UTC) Received: (qmail 82826 invoked by uid 500); 7 Apr 2015 22:55:13 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 82790 invoked by uid 500); 7 Apr 2015 22:55:13 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 82777 invoked by uid 99); 7 Apr 2015 22:55:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Apr 2015 22:55:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Apr 2015 22:55:10 +0000 Received: (qmail 82410 invoked by uid 99); 7 Apr 2015 22:54:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Apr 2015 22:54:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 923FAE2F24; Tue, 7 Apr 2015 22:54:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergi@apache.org To: commits@ignite.incubator.apache.org Date: Tue, 07 Apr 2015 22:55:06 -0000 Message-Id: <20eeb3a95fdc4f58a45059e258601512@git.apache.org> In-Reply-To: <115b7175e7bc43229ac27c192b212df6@git.apache.org> References: <115b7175e7bc43229ac27c192b212df6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [17/50] [abbrv] incubator-ignite git commit: # sprint-3 - Updated streaming examples. X-Virus-Checked: Checked by ClamAV on apache.org # sprint-3 - Updated streaming examples. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/eadb5d5c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/eadb5d5c Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/eadb5d5c Branch: refs/heads/ignite-624 Commit: eadb5d5c2b53ba4ae374258e950ac137e713c650 Parents: dcd24e0 Author: Dmitiry Setrakyan Authored: Tue Apr 7 00:57:00 2015 -0700 Committer: Dmitiry Setrakyan Committed: Tue Apr 7 00:57:00 2015 -0700 ---------------------------------------------------------------------- .../org/apache/ignite/examples/streaming/StreamVisitorExample.java | 2 +- .../ignite/examples/java8/streaming/StreamVisitorExample.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/eadb5d5c/examples/src/main/java/org/apache/ignite/examples/streaming/StreamVisitorExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java/org/apache/ignite/examples/streaming/StreamVisitorExample.java b/examples/src/main/java/org/apache/ignite/examples/streaming/StreamVisitorExample.java index 47e5538..16fbf3d 100644 --- a/examples/src/main/java/org/apache/ignite/examples/streaming/StreamVisitorExample.java +++ b/examples/src/main/java/org/apache/ignite/examples/streaming/StreamVisitorExample.java @@ -56,7 +56,7 @@ public class StreamVisitorExample { return; // Market data cache with default configuration. - CacheConfiguration mktDataCfg = new CacheConfiguration("marketTicks"); + CacheConfiguration mktDataCfg = new CacheConfiguration<>("marketTicks"); // Financial instrument cache configuration. CacheConfiguration instCfg = new CacheConfiguration<>("instCache"); http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/eadb5d5c/examples/src/main/java8/org/apache/ignite/examples/java8/streaming/StreamVisitorExample.java ---------------------------------------------------------------------- diff --git a/examples/src/main/java8/org/apache/ignite/examples/java8/streaming/StreamVisitorExample.java b/examples/src/main/java8/org/apache/ignite/examples/java8/streaming/StreamVisitorExample.java index 2fa7f16..704c249 100644 --- a/examples/src/main/java8/org/apache/ignite/examples/java8/streaming/StreamVisitorExample.java +++ b/examples/src/main/java8/org/apache/ignite/examples/java8/streaming/StreamVisitorExample.java @@ -56,7 +56,7 @@ public class StreamVisitorExample { return; // Market data cache with default configuration. - CacheConfiguration mktDataCfg = new CacheConfiguration("marketTicks"); + CacheConfiguration mktDataCfg = new CacheConfiguration<>("marketTicks"); // Financial instrument cache configuration. CacheConfiguration instCfg = new CacheConfiguration<>("instCache");