Module fp_rust::sync[][src]

Expand description

In this module there’re implementations & tests of general async handling features.

Structs

BlockingQueue implements Queue trait and provides BlockingQueue features.

CountDownLatch implements a latch with a value(> 0), waiting for the value counted down until <= 0 (the countdown action would be in other threads).

Traits

Queue trait defined the interface which perform basic Queue actions.

Will trait defines the interface which could do actions in its Handler.