| java.lang.Object | |
| ↳ | com.atlassian.stash.content.AbstractChangesetCallback |
This class is deprecated.
in 3.7 for removal in 5.0. All things "changeset" are being renamed to "commit", the more common term
for the data they represent. Due to the significant number of touchpoints, the deprecated classes and
interfaces will be left in for an entire major release cycle, rather than being removed in 4.0.
Callbacks should extend AbstractCommitCallback
instead.
Convenience implementation of ChangesetCallback that provides no-op implementations for all methods.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Discards the provided
Changeset and returns true to continue streaming. | |||||||||||
Called after the final
changeset has been streamed. | |||||||||||
Called before the first
changeset is streamed. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.stash.content.ChangesetCallback
| |||||||||||
Discards the provided Changeset and returns true to continue streaming.
| changeset | ignored |
|---|
true| IOException | may be thrown by derived classes |
|---|
Called after the final changeset has been streamed.
onStart(ChangesetContext)
without any calls to onChangeset(Changeset).| summary | summarizes the request and the streamed changesets |
|---|
| IOException |
|---|
Called before the first changeset is streamed.
| context | provides details about the request for which changesets are being streamed |
|---|
| IOException |
|---|