std::promise::set_value_at_thread_exit
Da cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
void set_value_at_thread_exit( const R& value ); |
(1) | (único membro da modelo promise genérico)(desde C++11) |
void set_value_at_thread_exit( R&& value ); |
(2) | (único membro da modelo promise genérico)(desde C++11) |
void set_value_at_thread_exit( R& value ); |
(3) | (único membro da promise<R&> especialização modelo)(desde C++11) |
void set_value_at_thread_exit() |
(4) | (único membro da promise<void> especialização modelo)(desde C++11) |
Armazena o
value
no estado compartilhado sem fazer o estado de pronto imediatamente. O estado está preparado quando a thread atual, após todas as variáveis com duração de segmento local de armazenamento foram destruídos.Original:
Stores the
value
into the shared state without making the state ready immediately. The state is made ready when the current thread exits, after all variables with thread-local storage duration have been destroyed.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
A operação é atômica, ou seja, ele se comporta como se adquirir um mutex único associado com o objeto promessa ao atualizar o objeto promessa.
Original:
The operation is atomic, i.e. it behaves as though they acquire a single mutex associated with the promise object while updating the promise object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Uma exceção é lançada se não há nenhum estado compartilhado ou o estado compartilhado já armazena um valor ou uma exceção.
Original:
An exception is thrown if there is no shared state or the shared state already stores a value or exception.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Índice |
[editar] Parâmetros
value | - | valor para armazenar no estado compartilhado
Original: value to store in the shared state The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Exceções
std::future_error com as seguintes condições:
Original:
std::future_error on the following conditions:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
- *this não tem estado compartilhado. A categoria de erro é definido para no_state.Original:*this has no shared state. The error category is set to no_state.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- O estado compartilhado já armazena um valor ou uma exceção. A categoria de erro é definido para promise_already_satisfied.Original:The shared state already stores a value or exception. The error category is set to promise_already_satisfied.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Além disso:
Original:
Additionally:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Qualquer exceção lançada pelo construtor de cópia de
value
Original:
Any exception thrown by the copy constructor of
value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Qualquer exceção lançada pelo construtor movimento de
value
Original:
Any exception thrown by the move constructor of
value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Exemplo
Esta seção está incompleta Motivo: sem exemplo |
[editar] Veja também
sets the result to specific value (função pública membro) |