pub unsafe extern "C" fn cass_execution_profile_set_whitelist_dc_filtering(
    profile: *mut CassExecProfile,
    dcs: *const c_char
) -> CassError
Expand description

Same as cass_execution_profile_set_whitelist_filtering(), but whitelist all hosts of a dc.

Examples: “dc1”, “dc1,dc2”

@public @memberof CassExecProfile

@param[in] profile @param[in] dcs A comma delimited list of dcs. An empty string will clear the whitelist dcs. The string is copied into the cluster configuration; the memory pointed to by this parameter can be freed after this call. @return CASS_OK if successful, otherwise an error occurred.

@see cass_cluster_set_whitelist_dc_filtering()