@TransactionAware(value=IMMEDIATE) public abstract class CommitDiscussionCancelableCommentEvent extends CommitDiscussionCommentEvent implements CancelableEvent
source
Modifier | Constructor and Description |
---|---|
protected |
CommitDiscussionCancelableCommentEvent(Object source,
CommitDiscussion discussion,
Comment comment,
Comment parent,
CommentAction commentAction,
CancelState cancelState) |
Modifier and Type | Method and Description |
---|---|
void |
cancel(KeyedMessage message)
Cancels the operation, providing a message explaining why.
|
boolean |
isCanceled()
Retrieves a flag indicating whether the operation has been canceled.
|
getComment, getCommentAction, getParent
getDiscussion
getRepository
getDate, getUser
getSource, toString
protected CommitDiscussionCancelableCommentEvent(@Nonnull Object source, @Nonnull CommitDiscussion discussion, @Nonnull Comment comment, @Nullable Comment parent, @Nonnull CommentAction commentAction, @Nonnull CancelState cancelState)
public void cancel(@Nonnull KeyedMessage message)
CancelState
The cancellation message is required, and should be as descriptive and clear as possible to allow end users to correct, if possible, the issue that triggered cancellation.
cancel
in interface CancelState
message
- a descriptive message explaining why the operation has been canceledpublic boolean isCanceled()
CancelState
In situations where multiple observers have the option to cancel an operation, for example when multiple
listeners receive the same CancelableEvent
, this flag
can be useful for determining that another observer has already canceled the operation.
isCanceled
in interface CancelState
true
if the operation has been canceled
; otherwise, false
Copyright © 2022 Atlassian. All rights reserved.