Module channel

Source
Expand description

Compute channel module.

Structs§

MpscComputeChannel
Create a channel using a [multi-producer, single-consumer channel to communicate with the compute server spawn on its own thread.
MutexComputeChannel
The MutexComputeChannel ensures thread-safety by locking the server on every operation
RefCellComputeChannel
A channel using a ref cell to access the server with mutability.

Traits§

ComputeChannel
The ComputeChannel trait links the ComputeClient to the ComputeServer while ensuring thread-safety