Metodo System::Threading::Thread::Join
Contenuti
[
Nascondere
]Thread::Join() method
Unisce il thread gestito. Esegue un’attesa illimitata se necessario.
void System::Threading::Thread::Join()
Vedi anche
- Class Thread
- Namespace System::Threading
- Library Aspose.Font for C++
Thread::Join(int) method
Unisce il thread gestito. Esegue un’attesa limitata.
bool System::Threading::Thread::Join(int millisecondsTimeout)
| Parametro | Tipo | Descrizione |
|---|---|---|
| millisecondsTimeout | int | Timeout di attesa in millisecondi. |
ReturnValue
True se il thread è stato unito con successo, false se il timeout è stato superato.
Vedi anche
- Class Thread
- Namespace System::Threading
- Library Aspose.Font for C++
Thread::Join(TimeSpan) method
Unisce il thread gestito. Esegue un’attesa limitata.
bool System::Threading::Thread::Join(TimeSpan timeout)
| Parametro | Tipo | Descrizione |
|---|---|---|
| timeout | TimeSpan | Un TimeSpan impostato alla quantità di tempo da attendere per la terminazione del thread. |
ReturnValue
True se il thread è stato unito con successo, false se il timeout è stato superato.
Vedi anche
- Class TimeSpan
- Class Thread
- Namespace System::Threading
- Library Aspose.Font for C++