Example #1
0
    static void Main()
    {
        var eventLoop = new EventLoop();

        Console.WriteLine("1");

        eventLoop.DoWithoutBlocking(
            () =>
            new CallbackArgument <int>(2),
            result =>
            Console.WriteLine(((CallbackArgument <int>)result).Value)
            );

        Console.WriteLine("3");

        eventLoop.StartNonBlockingWork();
    }