... so for the time being you should start by reading OmniThreadLibrary-related articles on my blog.
The simplest possible OTL threading code
Message-driven worker, the OTL way
Registering additional communication channels
Alternatively, you can open all my OmniThreadLibrary related articles in one go.
Lock-free stack tetralogy: Implementing lock-free stack, Lock-free stack problem, A working lock-free stack implementation, Lock-free queue
Calling OmniThreadLibrary methods by name
Using RTTI to call task methods
Blocking collection trilogy: Inverse semaphore, Dynamically allocated queue, Blocking collection
The simplest possible OmniThreadLibrary threading code.
Threaded "Hello, World" with TOmniEventMonitor component created in runtime.
Hello, World with bidirectional communication; TOmniEventMonitor created in runtime.
Threaded "Hello, World" with TOmniEventMonitor component on the form.
Hello, World with bidirectional communication; TOmniEventMonitor component on the form.
Hello, World with bidirectional communication, the OTL way.
Obsolete, almost totally equal to the demo 5_TwoWayHello_without_loop.
Demonstrates .WaitForInit, .ExitCode, .ExitMessage, and .SetPriority.
Demonstrates creation of additional communication channels.
Simple communication subsystem tester.
Full-blown communication subsystem tester. Used to verify correctness of the lock-free code.
Thread pool demo.
Demonstrates .WithLock.
Demonstrates exception catching.
Demonstrates .TerminateWhen and .WithCounter.
Task group demo.
Demonstrates .ChainTo.
Demonstrates .MsgWait and Windows message processing inside tasks.
Calling task methods by name and address.
Benchmarks various was of task method invokation.
Parallel QuickSort demo.
Demonstrates the use of anonymous methods as task workers in Delphi 2009.
Tests for .Terminate and .Terminated.
Demonstrates file scanning in a background thread.
Demonstrates how to create a connection pool with OmniThreadLibrary.
Demo for ReceiveWait and SendWait.
How to run multiple event monitors in parallel.
Parallel tree processing.
Demo for the new hook system.
Demo for OnMessage and OnTerminated, named method approach.
Demo for OnMessage and OnTerminated, anonymous method approach.
Demo for the new RegisterWaitObject/UnregisterWaitObject API.
Stress test for new TOmniBaseQueue and TOmniQueue.
Stress test for new TOmniBlockingCollection, also demoes the use of Environment to set process affinity.
Parallel tree scan using TOmniBlockingCollection.
Parallel tree scan using Parallel.ForEach (Delphi 2009 and newer).
Parallel calculations using Parallel.ForEach.Aggregate (Delphi 2009 and newer).