COMMANDS ( -- value )


Vocabulary
stomp.cli

Inputs
None

Outputs
valuean object


Definition


CONSTANT: COMMANDS
{
T{ command
{ name "abort" }
{ quot [ stomp-abort put-frame ] }
{ help "Roll back a transaction in progress." }
}
T{ command
{ name "ack" }
{ quot [ stomp-ack put-frame ] }
{ help
"Acknowledge success of a message using client acknowledgment."
}
}
T{ command
{ name "begin" }
{ quot [ stomp-begin put-frame ] }
{ help "Start a transaction." }
}
T{ command
{ name "commit" }
{ quot [ stomp-begin put-frame ] }
{ help "Commit a transaction in progress." }
}
T{ command
{ name "debug" }
{ quot
[
>lower { "on" "true" "yes" } member?
stomp-debug? set-global
]
}
{ help
"Enable or disable message debug statements."
}
}
T{ command
{ name "nack" }
{ quot [ stomp-nack put-frame ] }
{ help
"Acknowledge failure of a message using client acknowledgment."
}
}
T{ command
{ name "receipts" }
{ quot
[
>lower { "on" "true" "yes" } member?
stomp-receipts? set-global
]
}
{ help "Enable or disable message receipts." }
}
T{ command
{ name "send" }
{ quot [ " " split1 stomp-send put-frame ] }
{ help
"Send a message to a destination in the messaging system."
}
}
T{ command
{ name "sendfile" }
{ quot [ " " split1 stomp-sendfile put-frame ] }
{ help
"Send a file to a destination in the messaging system."
}
}
T{ command
{ name "subscribe" }
{ quot [ stomp-subscribe put-frame ] }
{ help "Subscribe to a destination." }
}
T{ command
{ name "unsubscribe" }
{ quot [ stomp-unsubscribe put-frame ] }
{ help "Unsubscribe from a destination." }
}
} inline