Method | Description | |
---|---|---|
Delete ( ) : void |
Deletes the current fiber. This method should only be used in the fiber action that's executing. |
|
Delete ( uint fiberId ) : void |
Deletes the fiber with the specified fiber id.
|
|
Fiber ( System.Action action ) : System |
Initializes a new instance of the Fiber class.
|
|
Switch ( uint fiberId ) : void |
Switches the execution context to the next fiber.
|
Method | Description | |
---|---|---|
FiberRunnerProc ( uint lpParam ) : uint |
Fiber method that executes the fiber action.
|
|
InnerCreate ( System.Action action ) : void |
Creates the fiber. This method is responsible for the *actual* fiber creation. |
public static Delete ( uint fiberId ) : void | ||
fiberId | uint | fiber id. |
return | void |
public Fiber ( System.Action action ) : System | ||
action | System.Action | Action. |
return | System |
public static Switch ( uint fiberId ) : void | ||
fiberId | uint | Fiber id. |
return | void |