Struct ocl::async::FutureRwGuard [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct FutureRwGuard<T, G> { /* fields omitted */ }

A future that resolves to a read or write guard after ensuring that the data being guarded is appropriately locked during the execution of an OpenCL command.

  1. Waits until both an exclusive data lock can be obtained and all prerequisite OpenCL commands have completed.
  2. Triggers an OpenCL command, remaining locked while the command executes.
  3. Returns a guard which provides exclusive (write) or shared (read) access to the locked data.

Methods

impl<T, G> FutureRwGuard<T, G> where
    G: RwGuard<T>, 
[src]

Sets an event wait list.

Setting a wait list will cause this FutureRwGuard to wait until contained events have their status set to complete before obtaining a lock on the guarded internal Vec.

[UNSTABLE]: This method may be renamed or otherwise changed at any time.

Sets a command completion event.

If a command completion event corresponding to the read or write command being executed in association with this FutureRwGuard is specified before this FutureRwGuard is polled it will cause this FutureRwGuard to suffix itself with an additional future that will wait until the command completion event completes before resolving into an RwGuard.

Not specifying a command completion event will cause this FutureRwGuard to resolve into an RwGuard immediately after the lock is obtained (indicated by the optionally created lock event).

TODO: Reword this. [UNSTABLE]: This method may be renamed or otherwise changed at any time.

Creates an event which will be triggered when a lock is obtained on the guarded internal Vec.

The returned event can be added to the wait list of subsequent OpenCL commands with the expectation that when all preceding futures are complete, the event will automatically be 'triggered' by having its status set to complete, causing those commands to execute. This can be used to inject host side code in amongst OpenCL commands without thread blocking or extra delays of any kind.

Creates an event which will be triggered after this future resolves and the ensuing RwGuard is dropped or manually released.

The returned event can be added to the wait list of subsequent OpenCL commands with the expectation that when all preceding futures are complete, the event will automatically be 'triggered' by having its status set to complete, causing those commands to execute. This can be used to inject host side code in amongst OpenCL commands without thread blocking or extra delays of any kind.

[UNSTABLE]: This method may be renamed or otherwise changed at any time.

Returns a reference to the event previously created with ::create_lock_event which will trigger (be completed) when the wait events are complete and the lock is locked.

Returns a reference to the event previously created with ::create_release_event which will trigger (be completed) when a lock is obtained on the guarded internal Vec.

[UNSTABLE]: This method may be renamed or otherwise changed at any time.

Blocks the current thread until the OpenCL command is complete and an appropriate lock can be obtained on the underlying data.

Returns a mutable pointer to the data contained within the internal Vec, bypassing all locks and protections.

Returns a mutable slice to the data contained within the internal Vec, bypassing all locks and protections.

Returns the length of the internal Vec.

impl<T> FutureRwGuard<T, ReadGuard<T>>
[src]

Trait Implementations

impl<T: Debug, G: Debug> Debug for FutureRwGuard<T, G>
[src]

Formats the value using the given formatter.

impl<T, G> Future for FutureRwGuard<T, G> where
    G: RwGuard<T>, 
[src]

The type of value that this future will resolved with if it is successful. Read more

The type of error that this future will resolve with if it fails in a normal fashion. Read more

Query this future to see if its value has become available, registering interest if it is not. Read more

Block the current thread until this future is resolved. Read more

Convenience function for turning this future into a trait object which is also Send. Read more

Map this future's result to a different type, returning a new future of the resulting type. Read more

Map this future's error to a different error, returning a new future. Read more

Map this future's error to any error implementing From for this future's Error, returning a new future. Read more

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more

Execute another future after this one has resolved successfully. Read more

Execute another future if this one resolves with an error. Read more

Waits for either one of two futures to complete. Read more

Waits for either one of two differently-typed futures to complete. Read more

Joins the result of two futures, waiting for them both to complete. Read more

Same as join, but with more futures.

Same as join, but with more futures.

Same as join, but with more futures.

Convert this future into a single element stream. Read more

Flatten the execution of this future when the successful result of this future is itself another future. Read more

Flatten the execution of this future when the successful result of this future is a stream. Read more

Fuse a future such that poll will never again be called once it has completed. Read more

Catches unwinding panics while polling the future. Read more

Create a cloneable handle to this future where all handles will resolve to the same result. Read more

impl<T, G> Drop for FutureRwGuard<T, G>
[src]

Drops this FutureRwGuard.

Blocks the current thread until the command associated with this FutureRwGuard (represented by the command completion event) completes. This ensures that the underlying Vec is not dropped before the command completes (which would cause obvious problems).