pub unsafe extern "C" fn cass_future_custom_payload_item(
    future: *mut CassFuture,
    index: usize,
    name: *mut *const c_char,
    name_length: *mut usize,
    value: *mut *const cass_byte_t,
    value_size: *mut usize
) -> CassError
Expand description

Gets a custom payload item from a response future at the specified index. If the future is not ready this method will wait for the future to be set.

@cassandra{2.2+}

@public @memberof CassFuture

@param[in] future @param[in] index @param[out] name @param[out] name_length @param[out] value @param[out] value_size @return CASS_OK if successful, otherwise an error occurred.