Dispose() public method

public Dispose ( ) : void
return void
コード例 #1
0
ファイル: Program.cs プロジェクト: kangkot/ArangoDB-NET
        static void PerformanceTests()
        {
            var performance = new Performance();

            //performance.TestSimpleSequentialHttpPostRequests();
            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: danludwig/ArangoDB-NET
        static void PerformanceTests()
        {
            var performance = new Performance();

            //performance.TestSimpleSequentialHttpPostRequests();
            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: yojimbo87/ArangoDB-NET
        static void PerformanceTests()
        {
            var iterationCount = 10000;
            var performance = new Performance();

            performance.TestArangoClientSequentialInsertion(iterationCount);
            performance.TestSimpleSequentialHttpPostRequests(iterationCount);

            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }
コード例 #4
0
        static void PerformanceTests()
        {
            var iterationCount = 10000;
            var performance    = new Performance();

            performance.TestArangoClientSequentialInsertion(iterationCount);
            performance.TestSimpleSequentialHttpPostRequests(iterationCount);

            //performance.TestRestSharpHttpPostRequests();
            //performance.TestSimpleParallelHttpPostRequests();

            performance.Dispose();
        }