Skip to content

Commit

Permalink
Enum reordering (#374)
Browse files Browse the repository at this point in the history
Co-authored-by: Bret Ambrose <[email protected]>
  • Loading branch information
bretambrose and Bret Ambrose authored Sep 12, 2024
1 parent 770666f commit c43232c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/request-response/request_response_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ enum aws_mqtt_request_response_operation_state {
/* (request only) subscription success -> (publish failure OR correlated response received) */
AWS_MRROS_PENDING_RESPONSE,

/* (request only) the operation's destroy task has been scheduled but not yet executed */
AWS_MRROS_PENDING_DESTROY,

/* (streaming only) subscription success -> (operation finished OR subscription ended event) */
AWS_MRROS_SUBSCRIBED,

/* (streaming only) (subscription failure OR subscription ended) -> operation close/terminate */
AWS_MRROS_TERMINAL,

/* (request only) the operation's destroy task has been scheduled but not yet executed */
AWS_MRROS_PENDING_DESTROY,
};

const char *s_aws_mqtt_request_response_operation_state_to_c_str(enum aws_mqtt_request_response_operation_state state) {
Expand Down

0 comments on commit c43232c

Please sign in to comment.