MessageStatus Enumeration |
The status of the current operation
Namespace:
Hummingbird.TestFramework.Messaging
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [SerializableAttribute]
public enum MessageStatus
<SerializableAttribute>
Public Enumeration MessageStatus
[SerializableAttribute]
public enum class MessageStatus
[<SerializableAttribute>]
type MessageStatus
Members
| Member name | Value | Description |
---|
| None | 0 |
The operation has not yet have a status
|
| Pending | 1 |
The request/response is inserted in the queue and to be processed.
|
| Sending | 2 |
The Request is being sending to the target application
|
| Sent | 3 |
The Request is sent to the target application, and reply is received.
|
| Receiving | 4 |
The virtualized service receives a request from remote application, and processing the request.
|
| Received | 5 |
The virtualized service processed the message from remote application, and a reply has been sent back.
|
| Timeout | 6 |
The timeout occurs but the a reply has not be received. (it means often the target service is not available, you have a network issue or your request has dropped by the firewall)
|
| Failed | 7 |
The request failed to sent or an Error message is received from remote application
|
| Abandoned | 8 |
The request is abandoned. it was in a queue not could not be sent because the queue overflows. it means your remote application is not passing the performance test.
|
| Replied | 9 |
The virtualized service received the request and a functional reply is sent back to the caller.
|
| FaultReplied | 10 |
The virtualized service received the request and according to the user settings, a Fault Message is sent back to the caller.
|
See Also