cleanup
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/08398837 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/08398837 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/08398837 Branch: refs/heads/ignite-2977 Commit: 0839883700e424d01ad6a6e426c1ea095356dac8 Parents: bf3b4ea Author: Pavel Tupitsyn <[email protected]> Authored: Tue Apr 12 17:53:35 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Tue Apr 12 17:53:35 2016 +0300 ---------------------------------------------------------------------- modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs | 5 ++--- .../dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs | 3 +++ .../dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/08398837/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs index dc29ca6..74ea846 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestRunner.cs @@ -21,7 +21,6 @@ namespace Apache.Ignite.Core.Tests using System.Diagnostics; using System.Reflection; using Apache.Ignite.Core.Tests.Cache.Query; - using Apache.Ignite.Core.Tests.Compute; using Apache.Ignite.Core.Tests.Memory; using NUnit.ConsoleRunner; @@ -33,9 +32,9 @@ namespace Apache.Ignite.Core.Tests Debug.Listeners.Add(new TextWriterTraceListener(Console.Out)); Debug.AutoFlush = true; - //TestOne(typeof(MixedClusterQueryTest), "TestExcept"); + TestOne(typeof(CacheLinqTest), "TestExcept"); - TestAll(typeof (ContinuousQueryJavaFilterTest)); + //TestAll(typeof (CacheQueriesCodeConfigurationTest)); //TestAllInAssembly(); } http://git-wip-us.apache.org/repos/asf/ignite/blob/08398837/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs index 4142d60..0bdbdf9 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs @@ -187,6 +187,9 @@ namespace Apache.Ignite.Core.Impl.Binary /** Type: stream receiver holder. */ public const byte TypeStreamReceiverHolder = 94; + /** Type: platform object proxy. */ + public const byte TypePlatformJavaObjectFactoryProxy = 99; + /** Collection: custom. */ public const byte CollectionCustom = 0; http://git-wip-us.apache.org/repos/asf/ignite/blob/08398837/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs index 00be127..aa881bb 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Marshaller.cs @@ -575,7 +575,7 @@ namespace Apache.Ignite.Core.Impl.Binary AddSystemType(BinaryUtils.TypeMessageListenerHolder, w => new MessageListenerHolder(w)); AddSystemType(BinaryUtils.TypeStreamReceiverHolder, w => new StreamReceiverHolder(w)); AddSystemType(0, w => new AffinityKey(w), "affKey"); - AddSystemType(99, w => new PlatformJavaObjectFactoryProxy()); + AddSystemType(BinaryUtils.TypePlatformJavaObjectFactoryProxy, w => new PlatformJavaObjectFactoryProxy()); } } }
