HPX - High Performance ParalleX

PrevUpHomeNext

Function create_binary_filter

hpx::create_binary_filter — Create an instance of a binary filter plugin.

Synopsis

// In header: <hpx/hpx_fwd.hpp>


util::binary_filter * 
create_binary_filter(char const * binary_filter_type, bool compress, 
                     util::binary_filter * next_filter = 0, 
                     error_code & ec = throws);

Description

[Note] Note

As long as ec is not pre-initialized to hpx::throws this function doesn't throw but returns the result code using the parameter ec. Otherwise it throws an instance of hpx::exception.

Parameters:

ec

[in,out] this represents the error status on exit, if this is pre-initialized to hpx::throws the function will throw on error instead.


PrevUpHomeNext