Struct ocl::async::FutureGuard[][src]

#[must_use = "futures do nothing unless polled"]
pub struct FutureGuard<V, G> where
    G: OrderGuard<V>, 
{ /* 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<V, G> FutureGuard<V, G> where
    G: OrderGuard<V>, 
[src]

Sets an event wait list.

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

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

Sets an event wait list.

See ::set_lock_wait_events.

[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 value.

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 when a lock is obtained on the guarded internal value.

enew must be an empty (null) event or event list.

See ::create_lock_event

Panics

Panics if there is an error creating the lock event.

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

Sets a command completion wait event.

command_event must be an event created by enqueuing an OpenCL command which interacts (reads/writes) with the data associated with this FutureGuard.

If the command completion event is specified, this FutureGuard will "suffix" itself with an additional future that will wait until the command completes before resolving.

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

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

Sets a command completion wait event.

See ::set_command_wait_event.

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

Creates an event which will be triggered after this future resolves and the ensuing OrderGuard 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.

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

enew must be an empty (null) event or event list.

See ::create_release_event.

Panics

Panics if there is an error creating the release event.

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

Returns a reference to the event previously created with ::create_lock_event or ::enew_lock 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 or ::enew_release which will trigger (be completed) when a lock is obtained on the guarded internal value.

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 value, bypassing all locks and protections.

Panics

This future must not have already resolved into a guard.

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

Panics

This future must not have already resolved into a guard.

Returns a reference to the OrderLock used to create this future.

impl<V> FutureGuard<V, ReadGuard<V>>
[src]

Trait Implementations

impl<V: Debug, G: Debug> Debug for FutureGuard<V, G> where
    G: OrderGuard<V>, 
[src]

Formats the value using the given formatter. Read more

impl<V, G> Future for FutureGuard<V, G> where
    G: OrderGuard<V>, 
[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

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

Do something with the item of a future, passing it on. 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<V, G> Drop for FutureGuard<V, G> where
    G: OrderGuard<V>, 
[src]

Drops this FutureGuard.

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

future_guard_drop_panic Feature

If the future_guard_drop_panic feature is enabled, dropping a FutureGuard before it is polled will cause a panic.

Auto Trait Implementations

impl<V, G> Send for FutureGuard<V, G> where
    G: Send,
    V: Send

impl<V, G> Sync for FutureGuard<V, G> where
    G: Sync,
    V: Send