omni::core::kResultTryAgain

Defined in omni/core/Result.h

constexpr Result omni::core::kResultTryAgain = 0x8007106B

Try the operation again. This is typically emitted in situations where an operation would require blocking, but the system is configured to be non-blocking. For example, attempting to read from a TCP socket when no data has been received would return kResultTryAgain.

  • POSIX: EAGAIN, EWOULDBLOCK

  • Windows: WMI_TRY_AGAIN

  • Decimal Value: -2147020693 Try the operation again.