Issue with WP_Session_Tokens::destroy() – Nothing happen

I have an issue with this code:

$manager = WP_Session_Tokens::get_instance(get_current_user_id());
$manager->destroy(0);

I want to destroy the session at index 0, but it’s not working. How can I properly remove a specific session?
If destroying a session is only possible with a token, how can I get the token of a specific session to remove it?