AWSGameLiftStopMatchmakingRequest.h 1023 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <Multiplayer/Session/MatchmakingRequests.h>
  10. namespace AWSGameLift
  11. {
  12. //! AWSGameLiftStopMatchmakingRequest
  13. //! GameLift stop matchmaking request which corresponds to Amazon GameLift
  14. //! Cancels a matchmaking ticket or match backfill ticket that is currently being processed.
  15. //! StopMatchmakingRequest
  16. struct AWSGameLiftStopMatchmakingRequest
  17. : public Multiplayer::StopMatchmakingRequest
  18. {
  19. public:
  20. AZ_RTTI(AWSGameLiftStopMatchmakingRequest, "{2766BC03-9F84-4346-A52B-49129BBAF38B}", Multiplayer::StopMatchmakingRequest);
  21. static void Reflect(AZ::ReflectContext* context);
  22. AWSGameLiftStopMatchmakingRequest() = default;
  23. virtual ~AWSGameLiftStopMatchmakingRequest() = default;
  24. };
  25. } // namespace AWSGameLift