Usage

You will learn the usage of fibers in this lesson.

We'll cover the following...

Common operations of fibers

The following are common operations of fibers.

  • A fiber starts its execution from a callable entity (function pointer, delegate, etc.) that does not take any parameter and does not return anything. For example, the following function can be used as a fiber function:

    void fiberFunction() {
       
...