Dispose() public method

public Dispose ( ) : void
return void
Beispiel #1
0
        static void PerformanceTests()
        {
            var performance = new Performance();

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

            performance.Dispose();
        }
Beispiel #2
0
        static void PerformanceTests()
        {
            var performance = new Performance();

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

            performance.Dispose();
        }
Beispiel #3
0
        static void PerformanceTests()
        {
            var iterationCount = 10000;
            var performance = new Performance();

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

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

            performance.Dispose();
        }
        static void PerformanceTests()
        {
            var iterationCount = 10000;
            var performance    = new Performance();

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

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

            performance.Dispose();
        }