.NET: Make IgniteManager public for usage in benchmarks and exe runner
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b1b5428e Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b1b5428e Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b1b5428e Branch: refs/heads/ignite-1655 Commit: b1b5428e2edba42c7412d2216dffd221c13f87be Parents: f85c6a3 Author: Pavel Tupitsyn <[email protected]> Authored: Thu Oct 22 18:00:54 2015 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Thu Oct 22 18:00:54 2015 +0300 ---------------------------------------------------------------------- .../platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs | 4 ++-- .../dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b1b5428e/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs index 67af684..6803772 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/IgniteManager.cs @@ -32,7 +32,7 @@ namespace Apache.Ignite.Core.Impl /// <summary> /// Native interface manager. /// </summary> - internal static unsafe class IgniteManager + public static unsafe class IgniteManager { /** Java Command line argument: Xms. Case sensitive. */ private const string CmdJvmMinMemJava = "-Xms"; @@ -100,7 +100,7 @@ namespace Apache.Ignite.Core.Impl } /// <summary> - /// Destroy JVM. + /// Blocks until JVM stops. /// </summary> public static void DestroyJvm() { http://git-wip-us.apache.org/repos/asf/ignite/blob/b1b5428e/modules/platforms/dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs index 127bd5a..6dd5706 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Properties/AssemblyInfo.cs @@ -40,7 +40,6 @@ using System.Runtime.InteropServices; #if !EXCLUDE_INTERNALS_VISIBLE_TO -[assembly: InternalsVisibleTo("Apache.Ignite")] [assembly: InternalsVisibleTo("Apache.Ignite.Core.Tests")] [assembly: InternalsVisibleTo("Apache.Ignite.Benchmarks")]
