AsyncCallerContext.cpp 352 B

12345678910111213141516
  1. /**
  2. * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. * SPDX-License-Identifier: Apache-2.0.
  4. */
  5. #include <aws/core/client/AsyncCallerContext.h>
  6. #include <aws/core/utils/UUID.h>
  7. namespace Aws
  8. {
  9. namespace Client
  10. {
  11. AsyncCallerContext::AsyncCallerContext() : m_uuid(Aws::Utils::UUID::RandomUUID())
  12. {}
  13. }
  14. }