aboutsummaryrefslogtreecommitdiffstats
path: root/include/rba/RBAResultStatusType.hpp
blob: 09c30d99d4a670f5a093b577384cf3b86865acf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) 2018 DENSO CORPORATION. All rights reserved.
/**
 * Result status type cluss
 */

#ifndef RBARESULTSTATUSTYPE_HPP
#define RBARESULTSTATUSTYPE_HPP

namespace rba
{

/**
 * @enum RBAResultStatusType
 * Status of the arbitration result.
 */
enum class RBAResultStatusType : std::uint8_t
{
  /**
   * @brief Success
   */
  SUCCESS,

  /**
   * @brief Failed
   */
  FAILED,

  /**
   * @brief Unknown context or content state
   */
  UNKNOWN_CONTENT_STATE,

  /**
   * @brief Cancel arbitration error
   */
  CANCEL_ERROR

};

}

#endif