| com.atlassian.bitbucket.repository.TagCallback |
A callback for streaming tags.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Called after the final
tag has been streamed. | |||||||||||
Called before the first
tag is streamed. | |||||||||||
Called to process a
tag. | |||||||||||
Called after the final tag has been streamed.
Note: If there were no tags, this method may be called immediately after onStart(TagContext) without
any calls to onTag(Tag).
| summary | summarizes the request and the streamed tags |
|---|
| IOException | May be thrown by implementations which perform I/O |
|---|
Called before the first tag is streamed.
| context | provides details about the request for which tags are being streamed |
|---|
| IOException | May be thrown by implementations which perform I/O |
|---|
Called to process a tag.
| tag | the tag to be handled by the callback |
|---|
true if further tags should be streamed; otherwise, false to stop streaming| IOException | May be thrown by implementations which perform I/O |
|---|