Github user pivotal-jbarrett commented on a diff in the pull request: https://github.com/apache/geode-native/pull/63#discussion_r106929690 --- Diff: src/clicache/integration-test/ThinClientAppDomainFunctionExecutionTests.cs --- @@ -0,0 +1,282 @@ +//========================================================================= +// Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved. +// This product is protected by U.S. and international copyright +// and intellectual property laws. Pivotal products are covered by +// more patents listed at http://www.pivotal.io/patents. +//======================================================================== + +using System; +using System.Collections.Generic; +using System.Collections; +using System.Threading; + +namespace Apache.Geode.Client.UnitTests +{ + using NUnit.Framework; + using Apache.Geode.DUnitFramework; + using Apache.Geode.Client.Tests; + + using Apache.Geode.Client; + using Region = Apache.Geode.Client.IRegion<Object, Object>; + + public class MyAppDomainResultCollector<TResult> : IResultCollector<TResult> + { + #region Private members + private bool m_resultReady = false; + ICollection<TResult> m_results = null; + private int m_addResultCount = 0; + private int m_getResultCount = 0; + private int m_endResultCount = 0; + #endregion + public int GetAddResultCount() + { + return m_addResultCount; + } + public int GetGetResultCount() + { + return m_getResultCount; + } + public int GetEndResultCount() + { + return m_endResultCount; + } + public MyAppDomainResultCollector() + { + m_results = new List<TResult>(); + } + public void AddResult(TResult result) + { + Util.Log("hitesh in MyAppDomainResultCollector " + result + " : " + result.GetType()); --- End diff -- Doh! thanks!
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---