[][src]Type Definition aeron_rs::context::OnAvailableImage

type OnAvailableImage = fn(image: &Image);

Function called by Aeron to deliver notification of an available image.

The Image passed may not be the image used internally, but may be copied or moved freely.

Implementations should do the minimum work for passing off state to another thread for later processing and should not make a reentrant call back into the Aeron instance.

@param image that has become available.