IGNITE-3604 .NET: Fix inconsistent namespace imports in examples
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/6a896a0b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/6a896a0b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/6a896a0b Branch: refs/heads/ignite-3443 Commit: 6a896a0bbeabf9d709261d4a5e055174d5040855 Parents: 9ff4e53 Author: Pavel Tupitsyn <[email protected]> Authored: Fri Jul 29 15:40:42 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Fri Jul 29 15:40:42 2016 +0300 ---------------------------------------------------------------------- .../dotnet/Apache.Ignite.sln.DotSettings | 4 +++ .../Compute/ClosureExample.cs | 12 ++++---- .../Compute/TaskExample.cs | 14 +++++----- .../Datagrid/ContinuousQueryExample.cs | 16 +++++------ .../Datagrid/DataStreamerExample.cs | 12 ++++---- .../Datagrid/LinqExample.cs | 29 ++++++++++---------- .../Datagrid/PutGetExample.cs | 12 ++++---- .../Datagrid/QueryExample.cs | 18 ++++++------ .../Datagrid/StoreExample.cs | 20 +++++++------- .../Datagrid/TransactionExample.cs | 14 +++++----- .../Events/EventsExample.cs | 16 +++++------ .../Messaging/MessagingExample.cs | 10 +++---- .../Misc/LifecycleExample.cs | 13 ++++----- .../Services/IMapService.cs | 4 +-- .../Services/ServicesExample.cs | 10 +++---- .../Apache.Ignite.ExamplesDll/Binary/Account.cs | 6 ++-- .../Apache.Ignite.ExamplesDll/Binary/Address.cs | 2 +- .../Binary/Employee.cs | 8 +++--- .../Binary/EmployeeKey.cs | 4 +-- .../Binary/Organization.cs | 2 +- .../Compute/AverageSalaryJob.cs | 11 ++++---- .../Compute/AverageSalaryTask.cs | 9 +++--- .../Compute/CharacterCountClosure.cs | 6 ++-- .../Compute/CharacterCountReducer.cs | 4 +-- .../Datagrid/ContinuousQueryFilter.cs | 6 ++-- .../Datagrid/EmployeeStore.cs | 13 ++++----- .../Datagrid/EmployeeStorePredicate.cs | 5 ++-- .../Events/LocalListener.cs | 8 +++--- .../Messaging/LocalListener.cs | 8 +++--- .../Messaging/RemoteOrderedListener.cs | 10 +++---- .../Messaging/RemoteUnorderedListener.cs | 10 +++---- .../Services/MapService.cs | 12 ++++---- 32 files changed, 163 insertions(+), 165 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/Apache.Ignite.sln.DotSettings ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.sln.DotSettings b/modules/platforms/dotnet/Apache.Ignite.sln.DotSettings index ac065bc..688a924 100644 --- a/modules/platforms/dotnet/Apache.Ignite.sln.DotSettings +++ b/modules/platforms/dotnet/Apache.Ignite.sln.DotSettings @@ -1,5 +1,9 @@ <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp50</s:String> + <s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=silent/@EntryIndexedValue"><?xml version="1.0" encoding="utf-16"?><Profile name="silent"><CSReorderTypeMembers>True</CSReorderTypeMembers><CSCodeStyleAttributes ArrangeTypeAccessModifier="True" ArrangeTypeMemberAccessModifier="True" SortModifiers="True" RemoveRedundantParentheses="False" AddMissingParentheses="False" ArrangeBraces="False" ArrangeAttributes="False" ArrangeArgumentsStyle="False" /><RemoveCodeRedundancies>True</RemoveCodeRedundancies><CSArrangeQualifiers>True</CSArrangeQualifiers><CSOptimizeUsings><OptimizeUsings>True</OptimizeUsings><EmbraceInRegion>False</EmbraceInRegion><RegionName></RegionName></CSOptimizeUsings><CSShortenReferences>True</CSShortenReferences><CSReformatCode>True</CSReformatCode></Profile></s:String> + <s:String x:Key="/Default/CodeStyle/CodeCleanup/SilentCleanupProfile/@EntryValue">silent</s:String> + <s:String x:Key="/Default/CodeStyle/CodeFormatting/XmlDocFormatter/IndentSubtags/@EntryValue">DoNotTouch</s:String> + <s:String x:Key="/Default/CodeStyle/CodeFormatting/XmlDocFormatter/IndentTagContent/@EntryValue">DoNotTouch</s:String> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/AddImportsToDeepestScope/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/QualifiedUsingAtNestedScope/@EntryValue">True</s:Boolean> </wpf:ResourceDictionary> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/ClosureExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/ClosureExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/ClosureExample.cs index 34e32b9..0b5ac46 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/ClosureExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/ClosureExample.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using System.Linq; -using Apache.Ignite.Core; -using Apache.Ignite.ExamplesDll.Compute; - namespace Apache.Ignite.Examples.Compute { + using System; + using System.Collections.Generic; + using System.Linq; + using Apache.Ignite.Core; + using Apache.Ignite.ExamplesDll.Compute; + /// <summary> /// Example demonstrating closure execution. /// <para /> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/TaskExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/TaskExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/TaskExample.cs index a7873cb..71e76a9 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/TaskExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Compute/TaskExample.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using Apache.Ignite.Core; -using Apache.Ignite.ExamplesDll.Compute; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Compute { + using System; + using System.Collections.Generic; + using Apache.Ignite.Core; + using Apache.Ignite.ExamplesDll.Binary; + using Apache.Ignite.ExamplesDll.Compute; + /// <summary> /// Example demonstrating task execution. /// <para /> @@ -78,7 +78,7 @@ namespace Apache.Ignite.Examples.Compute /// <returns>Collection of employees.</returns> private static ICollection<Employee> Employees() { - return new [] + return new[] { new Employee( "James Wilson", http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs index e3fc583..d2e2726 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/ContinuousQueryExample.cs @@ -15,16 +15,16 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using System.Threading; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Cache.Event; -using Apache.Ignite.Core.Cache.Query.Continuous; -using Apache.Ignite.ExamplesDll.Datagrid; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Collections.Generic; + using System.Threading; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache.Event; + using Apache.Ignite.Core.Cache.Query.Continuous; + using Apache.Ignite.ExamplesDll.Datagrid; + /// <summary> /// This example demonstrates continuous query API. /// <para /> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs index 88a0529..c4bf342 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/DataStreamerExample.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using System.Diagnostics; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Datastream; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Diagnostics; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Datastream; + using Apache.Ignite.ExamplesDll.Binary; + /// <summary> /// Demonstrates how cache can be populated with data utilizing <see cref="IDataStreamer{TK,TV}"/>. /// Data streamer is a lot more efficient to use than standard cache put operation http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/LinqExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/LinqExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/LinqExample.cs index b4a8493..2223600 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/LinqExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/LinqExample.cs @@ -15,19 +15,18 @@ * limitations under the License. */ -using System; -using System.Linq; -using System.Collections.Generic; - -using Apache.Ignite.Core; -using Apache.Ignite.Linq; -using Apache.Ignite.Core.Cache; -using Apache.Ignite.Core.Cache.Configuration; -using Apache.Ignite.Core.Cache.Query; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Collections.Generic; + using System.Linq; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache; + using Apache.Ignite.Core.Cache.Configuration; + using Apache.Ignite.Core.Cache.Query; + using Apache.Ignite.ExamplesDll.Binary; + using Apache.Ignite.Linq; + /// <summary> /// This example populates cache with sample data and runs several LINQ queries over this data. /// <para /> @@ -103,7 +102,7 @@ namespace Apache.Ignite.Examples.Datagrid { const int zip = 94109; - IQueryable<ICacheEntry<EmployeeKey, Employee>> qry = + IQueryable<ICacheEntry<EmployeeKey, Employee>> qry = cache.AsCacheQueryable().Where(emp => emp.Value.Address.Zip == zip); Console.WriteLine(); @@ -122,7 +121,7 @@ namespace Apache.Ignite.Examples.Datagrid const int zip = 94109; // Compile cache query to eliminate LINQ overhead on multiple runs. - Func<int, IQueryCursor<ICacheEntry<EmployeeKey, Employee>>> qry = + Func<int, IQueryCursor<ICacheEntry<EmployeeKey, Employee>>> qry = CompiledQuery.Compile((int z) => cache.AsCacheQueryable().Where(emp => emp.Value.Address.Zip == z)); Console.WriteLine(); @@ -137,7 +136,7 @@ namespace Apache.Ignite.Examples.Datagrid /// </summary> /// <param name="employeeCache">Employee cache.</param> /// <param name="organizationCache">Organization cache.</param> - private static void JoinQueryExample(ICache<EmployeeKey, Employee> employeeCache, + private static void JoinQueryExample(ICache<EmployeeKey, Employee> employeeCache, ICache<int, Organization> organizationCache) { const string orgName = "Apache"; @@ -145,7 +144,7 @@ namespace Apache.Ignite.Examples.Datagrid IQueryable<ICacheEntry<EmployeeKey, Employee>> employees = employeeCache.AsCacheQueryable(); IQueryable<ICacheEntry<int, Organization>> organizations = organizationCache.AsCacheQueryable(); - IQueryable<ICacheEntry<EmployeeKey, Employee>> qry = + IQueryable<ICacheEntry<EmployeeKey, Employee>> qry = from employee in employees from organization in organizations where employee.Key.OrganizationId == organization.Key && organization.Value.Name == orgName http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs index ebf77ec..10a75fa 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/PutGetExample.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Binary; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Collections.Generic; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Binary; + using Apache.Ignite.ExamplesDll.Binary; + /// <summary> /// This example demonstrates several put-get operations on Ignite cache /// with binary values. Note that binary object can be retrieved in http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs index 7880eac..ccd6fd9 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryExample.cs @@ -15,17 +15,17 @@ * limitations under the License. */ -using System; -using System.Collections; -using System.Collections.Generic; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Cache.Configuration; -using Apache.Ignite.Core.Cache; -using Apache.Ignite.Core.Cache.Query; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Collections; + using System.Collections.Generic; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache; + using Apache.Ignite.Core.Cache.Configuration; + using Apache.Ignite.Core.Cache.Query; + using Apache.Ignite.ExamplesDll.Binary; + /// <summary> /// This example populates cache with sample data and runs several SQL and /// full text queries over this data. http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs index 25721b8..62da647 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/StoreExample.cs @@ -15,15 +15,15 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Cache.Configuration; -using Apache.Ignite.ExamplesDll.Binary; -using Apache.Ignite.ExamplesDll.Datagrid; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using System.Collections.Generic; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache.Configuration; + using Apache.Ignite.ExamplesDll.Binary; + using Apache.Ignite.ExamplesDll.Datagrid; + /// <summary> /// Example demonstrating cache store. /// <para /> @@ -38,7 +38,7 @@ namespace Apache.Ignite.Examples.Datagrid /// Apache.Ignite.exe -configFileName=platforms\dotnet\examples\apache.ignite.examples\app.config -assembly=[path_to_Apache.Ignite.ExamplesDll.dll] /// 2) Start example. /// </summary> - class StoreExample + public class StoreExample { /// <summary>Cache name.</summary> private const string CacheName = "dotnet_cache_with_store"; @@ -75,7 +75,7 @@ namespace Apache.Ignite.Examples.Datagrid Console.WriteLine(); Console.WriteLine(">>> Loaded entry from store through ICache.LoadCache()."); Console.WriteLine(">>> Current cache size: " + cache.GetSize()); - + // Load entry from store calling ICache.Get() method. Employee emp = cache.Get(2); @@ -97,7 +97,7 @@ namespace Apache.Ignite.Examples.Datagrid // Clear values again. cache.Clear(); - + Console.WriteLine(); Console.WriteLine(">>> Cleared values from cache again."); Console.WriteLine(">>> Current cache size: " + cache.GetSize()); http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs index b0e953c..f90cf96 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/TransactionExample.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Cache.Configuration; -using Apache.Ignite.ExamplesDll.Binary; -using Apache.Ignite.Core.Transactions; - namespace Apache.Ignite.Examples.Datagrid { + using System; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache.Configuration; + using Apache.Ignite.Core.Transactions; + using Apache.Ignite.ExamplesDll.Binary; + /// <summary> /// This example demonstrates how to use transactions on Apache cache. /// <para /> @@ -37,7 +37,7 @@ namespace Apache.Ignite.Examples.Datagrid /// Apache.Ignite.exe -configFileName=platforms\dotnet\examples\apache.ignite.examples\app.config -assembly=[path_to_Apache.Ignite.ExamplesDll.dll] /// 2) Start example. /// </summary> - class TransactionExample + public class TransactionExample { /// <summary>Cache name.</summary> private const string CacheName = "dotnet_cache_tx"; http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Events/EventsExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Events/EventsExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Events/EventsExample.cs index 3b804f6..938b132 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Events/EventsExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Events/EventsExample.cs @@ -15,16 +15,16 @@ * limitations under the License. */ -using System; -using System.Linq; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Events; -using Apache.Ignite.ExamplesDll.Compute; -using Apache.Ignite.ExamplesDll.Events; -using Apache.Ignite.ExamplesDll.Binary; - namespace Apache.Ignite.Examples.Events { + using System; + using System.Linq; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Events; + using Apache.Ignite.ExamplesDll.Binary; + using Apache.Ignite.ExamplesDll.Compute; + using Apache.Ignite.ExamplesDll.Events; + /// <summary> /// Example demonstrating Ignite events. /// <para /> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs index be267df..6728e38 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Messaging/MessagingExample.cs @@ -15,13 +15,13 @@ * limitations under the License. */ -using System; -using System.Threading; -using Apache.Ignite.Core; -using Apache.Ignite.ExamplesDll.Messaging; - namespace Apache.Ignite.Examples.Messaging { + using System; + using System.Threading; + using Apache.Ignite.Core; + using Apache.Ignite.ExamplesDll.Messaging; + /// <summary> /// Example demonstrating Ignite messaging. Should be run with standalone Apache Ignite.NET node. /// <para /> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs index b7acb61..4831b2c 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs @@ -15,16 +15,15 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Lifecycle; -using Apache.Ignite.Core.Resource; - namespace Apache.Ignite.Examples.Misc { + using System; + using System.Collections.Generic; + using Apache.Ignite.Core; using Apache.Ignite.Core.Discovery.Tcp; using Apache.Ignite.Core.Discovery.Tcp.Static; + using Apache.Ignite.Core.Lifecycle; + using Apache.Ignite.Core.Resource; /// <summary> /// This example shows how to provide your own <see cref="ILifecycleBean"/> implementation @@ -101,7 +100,7 @@ namespace Apache.Ignite.Examples.Misc if (evt == LifecycleEventType.AfterNodeStart) Started = true; else if (evt == LifecycleEventType.AfterNodeStop) - Started = false; + Started = false; } /// <summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/IMapService.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/IMapService.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/IMapService.cs index 7253a0b..4e2b883 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/IMapService.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/IMapService.cs @@ -15,10 +15,10 @@ * limitations under the License. */ -using Apache.Ignite.ExamplesDll.Services; - namespace Apache.Ignite.Examples.Services { + using Apache.Ignite.ExamplesDll.Services; + /// <summary> /// Interface for service proxy interaction. /// Actual service class (<see cref="MapService{TK,TV}"/>) does not have to implement this interface. http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/ServicesExample.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/ServicesExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/ServicesExample.cs index fcfce14..245356d 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/ServicesExample.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Services/ServicesExample.cs @@ -15,12 +15,12 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core; -using Apache.Ignite.ExamplesDll.Services; - namespace Apache.Ignite.Examples.Services { + using System; + using Apache.Ignite.Core; + using Apache.Ignite.ExamplesDll.Services; + /// <summary> /// Example demonstrating Ignite services. /// <para /> @@ -55,7 +55,7 @@ namespace Apache.Ignite.Examples.Services // Get a sticky service proxy so that we will always be contacting the same remote node. var prx = ignite.GetServices().GetServiceProxy<IMapService<int, string>>("service", true); - + for (var i = 0; i < 10; i++) prx.Put(i, i.ToString()); http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Account.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Account.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Account.cs index 4d3fc35..8d659e1 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Account.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Account.cs @@ -34,12 +34,12 @@ namespace Apache.Ignite.ExamplesDll.Binary Id = id; Balance = balance; } - + /// <summary> /// Account ID. /// </summary> public int Id { get; set; } - + /// <summary> /// Account balance. /// </summary> @@ -51,7 +51,7 @@ namespace Apache.Ignite.ExamplesDll.Binary /// <returns> /// A string that represents the current object. /// </returns> - override public String ToString() + public override String ToString() { return string.Format("{0} [id={1}, balance={2}]", typeof(Account).Name, Id, Balance); } http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Address.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Address.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Address.cs index bb6ed7f..7053e78 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Address.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Address.cs @@ -76,7 +76,7 @@ namespace Apache.Ignite.ExamplesDll.Binary /// <returns> /// A string that represents the current object. /// </returns> - override public string ToString() + public override string ToString() { return string.Format("{0} [street={1}, zip={2}]", typeof(Address).Name, Street, Zip); } http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Employee.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Employee.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Employee.cs index 44a3f11..0fc3230 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Employee.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Employee.cs @@ -72,9 +72,9 @@ namespace Apache.Ignite.ExamplesDll.Binary /// <returns> /// A string that represents the current object. /// </returns> - override public string ToString() + public override string ToString() { - return string.Format("{0} [name={1}, salary={2}, address={3}, departments={4}]", typeof(Employee).Name, + return string.Format("{0} [name={1}, salary={2}, address={3}, departments={4}]", typeof(Employee).Name, Name, Salary, Address, CollectionToString(Departments)); } @@ -87,8 +87,8 @@ namespace Apache.Ignite.ExamplesDll.Binary if (col == null) return "null"; - var elements = col.Any() - ? col.Select(x => x.ToString()).Aggregate((x, y) => x + ", " + y) + var elements = col.Any() + ? col.Select(x => x.ToString()).Aggregate((x, y) => x + ", " + y) : string.Empty; return string.Format("[{0}]", elements); http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/EmployeeKey.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/EmployeeKey.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/EmployeeKey.cs index 9c1d8cc..e699648 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/EmployeeKey.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/EmployeeKey.cs @@ -47,7 +47,7 @@ namespace Apache.Ignite.ExamplesDll.Binary [AffinityKeyMapped] [QuerySqlField(IsIndexed = true)] public int OrganizationId { get; private set; } - + /// <summary> /// Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>. /// </summary> @@ -82,7 +82,7 @@ namespace Apache.Ignite.ExamplesDll.Binary /// </returns> public override string ToString() { - return string.Format("{0} [id={1}, organizationId={2}]", typeof (EmployeeKey).Name, Id, OrganizationId); + return string.Format("{0} [id={1}, organizationId={2}]", typeof(EmployeeKey).Name, Id, OrganizationId); } } } http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Organization.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Organization.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Organization.cs index 16d4113..7495ee9 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Organization.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Binary/Organization.cs @@ -70,7 +70,7 @@ namespace Apache.Ignite.ExamplesDll.Binary /// <filterpriority>2</filterpriority> public override string ToString() { - return string.Format("{0} [name={1}, address={2}, type={3}, lastUpdated={4}]", typeof (Organization).Name, + return string.Format("{0} [name={1}, address={2}, type={3}, lastUpdated={4}]", typeof(Organization).Name, Name, Address, Type, LastUpdated); } } http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryJob.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryJob.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryJob.cs index e05a436..2685df0 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryJob.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryJob.cs @@ -15,12 +15,11 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using Apache.Ignite.Core.Compute; - namespace Apache.Ignite.ExamplesDll.Compute { + using System; + using System.Collections.Generic; + using Apache.Ignite.Core.Compute; using Apache.Ignite.ExamplesDll.Binary; /// <summary> @@ -33,7 +32,7 @@ namespace Apache.Ignite.ExamplesDll.Compute private readonly ICollection<Employee> _employees = new List<Employee>(); /// <summary> - /// Adds employee. + /// Adds employee. /// </summary> /// <param name="employee">Employee.</param> public void Add(Employee employee) @@ -45,7 +44,7 @@ namespace Apache.Ignite.ExamplesDll.Compute /// Execute the job. /// </summary> /// <returns>Job result: tuple with total salary in the first item and employees count in the second.</returns> - override public Tuple<long, int> Execute() + public override Tuple<long, int> Execute() { long sum = 0; int count = 0; http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryTask.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryTask.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryTask.cs index 3af166f..6ef9798 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryTask.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/AverageSalaryTask.cs @@ -15,13 +15,12 @@ * limitations under the License. */ -using System; -using System.Collections.Generic; -using System.Linq; -using Apache.Ignite.Core.Compute; - namespace Apache.Ignite.ExamplesDll.Compute { + using System; + using System.Collections.Generic; + using System.Linq; + using Apache.Ignite.Core.Compute; using Apache.Ignite.ExamplesDll.Binary; /// <summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountClosure.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountClosure.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountClosure.cs index 2823221..a34c3fa 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountClosure.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountClosure.cs @@ -15,11 +15,11 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core.Compute; - namespace Apache.Ignite.ExamplesDll.Compute { + using System; + using Apache.Ignite.Core.Compute; + /// <summary> /// Closure counting characters in a string. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountReducer.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountReducer.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountReducer.cs index 6825046..9ebf7eb 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountReducer.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Compute/CharacterCountReducer.cs @@ -15,10 +15,10 @@ * limitations under the License. */ -using Apache.Ignite.Core.Compute; - namespace Apache.Ignite.ExamplesDll.Compute { + using Apache.Ignite.Core.Compute; + /// <summary> /// Character count reducer which collects individual string lengths and aggregate them. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/ContinuousQueryFilter.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/ContinuousQueryFilter.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/ContinuousQueryFilter.cs index 8c05f42..f569f3e 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/ContinuousQueryFilter.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/ContinuousQueryFilter.cs @@ -15,11 +15,11 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core.Cache.Event; - namespace Apache.Ignite.ExamplesDll.Datagrid { + using System; + using Apache.Ignite.Core.Cache.Event; + /// <summary> /// Filter for continuous query example. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStore.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStore.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStore.cs index 561d83f..7049011 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStore.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStore.cs @@ -15,15 +15,14 @@ * limitations under the License. */ -using System; -using System.Collections; -using System.Collections.Concurrent; -using System.Collections.Generic; -using Apache.Ignite.Core.Cache; -using Apache.Ignite.Core.Cache.Store; - namespace Apache.Ignite.ExamplesDll.Datagrid { + using System; + using System.Collections; + using System.Collections.Concurrent; + using System.Collections.Generic; + using Apache.Ignite.Core.Cache; + using Apache.Ignite.Core.Cache.Store; using Apache.Ignite.ExamplesDll.Binary; /// <summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStorePredicate.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStorePredicate.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStorePredicate.cs index c25b2fa..5c3bf89 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStorePredicate.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Datagrid/EmployeeStorePredicate.cs @@ -15,11 +15,10 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core.Cache; - namespace Apache.Ignite.ExamplesDll.Datagrid { + using System; + using Apache.Ignite.Core.Cache; using Apache.Ignite.ExamplesDll.Binary; /// <summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Events/LocalListener.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Events/LocalListener.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Events/LocalListener.cs index 8c689dc..86ef345 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Events/LocalListener.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Events/LocalListener.cs @@ -15,12 +15,12 @@ * limitations under the License. */ -using System; -using System.Threading; -using Apache.Ignite.Core.Events; - namespace Apache.Ignite.ExamplesDll.Events { + using System; + using System.Threading; + using Apache.Ignite.Core.Events; + /// <summary> /// Local event listener. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/LocalListener.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/LocalListener.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/LocalListener.cs index 591d426..e8b2f4b 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/LocalListener.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/LocalListener.cs @@ -15,12 +15,12 @@ * limitations under the License. */ -using System; -using System.Threading; -using Apache.Ignite.Core.Messaging; - namespace Apache.Ignite.ExamplesDll.Messaging { + using System; + using System.Threading; + using Apache.Ignite.Core.Messaging; + /// <summary> /// Local message listener which signals countdown event on each received message. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteOrderedListener.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteOrderedListener.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteOrderedListener.cs index 85538c2..edf38f2 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteOrderedListener.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteOrderedListener.cs @@ -15,13 +15,13 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Messaging; -using Apache.Ignite.Core.Resource; - namespace Apache.Ignite.ExamplesDll.Messaging { + using System; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Messaging; + using Apache.Ignite.Core.Resource; + /// <summary> /// Listener for Ordered topic. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteUnorderedListener.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteUnorderedListener.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteUnorderedListener.cs index ab23e8b..8054d36 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteUnorderedListener.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Messaging/RemoteUnorderedListener.cs @@ -15,13 +15,13 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Messaging; -using Apache.Ignite.Core.Resource; - namespace Apache.Ignite.ExamplesDll.Messaging { + using System; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Messaging; + using Apache.Ignite.Core.Resource; + /// <summary> /// Listener for Unordered topic. /// </summary> http://git-wip-us.apache.org/repos/asf/ignite/blob/6a896a0b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Services/MapService.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Services/MapService.cs b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Services/MapService.cs index d577ff7..958d91d 100644 --- a/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Services/MapService.cs +++ b/modules/platforms/dotnet/examples/Apache.Ignite.ExamplesDll/Services/MapService.cs @@ -15,14 +15,14 @@ * limitations under the License. */ -using System; -using Apache.Ignite.Core; -using Apache.Ignite.Core.Cache; -using Apache.Ignite.Core.Resource; -using Apache.Ignite.Core.Services; - namespace Apache.Ignite.ExamplesDll.Services { + using System; + using Apache.Ignite.Core; + using Apache.Ignite.Core.Cache; + using Apache.Ignite.Core.Resource; + using Apache.Ignite.Core.Services; + /// <summary> /// Service implementation. /// </summary>
