future_result.OnCompletion([] (const firebase::Future<void>& completed_future, void* user_data) {
if(completed_future.error() == 0){
completed_future.result_void();
runLogging(" my run this in FUTURE !! \n");
firebase::remote_config::ActivateFetched();
auto newNnfff = firebase::remote_config::GetString("keyLos223");
runLogging(" my get strings == %s \n", newNnfff.c_str() );
// exists
auto* aw = (int*)(user_data);
//if(*aw){
// runLogging(" TRUE USERS %d \n");
//}else{
runLogging(" FALSE USERS %d \n", *aw);
//}
}else{
runLogging(" Error in my future ! \n");
}
}, &aNN);