StOMP settings

You can change StOMP bahavior via StompSettings.

For example:
writer := StompWriter onBytes: ByteArray new.
writer settings suppressNilWrite: true. "Avoid writing nil values"
write nextPut: <yourObject>.

StompWarning and its subclasses all have these options:

suppressSignaling Suppress raising the warning itself
suppressTranscriptLogging Suppress logging in Transcript when the warning occurs

Comments