public class

AbstractFileContentCallback

extends Object
implements FileContentCallback
java.lang.Object
   ↳ com.atlassian.bitbucket.content.AbstractFileContentCallback

Summary

Public Constructors
AbstractFileContentCallback()
Public Methods
void offerBlame(Page<Blame> blames)
If annotations were requested and at least one line was streamed, this method will be called before onEnd(FileSummary) to provide blame for the streamed lines.
void onBinary()
Called once if the file is binary.
void onEnd(FileSummary summary)
Called after the final line, and blame if requested, has been streamed.
boolean onLine(int lineNumber, String line, boolean truncated)
Ignores the provided line details and returns true, which will continue streaming.
void onStart(FileContext context)
Called before the first onLine(int, String, boolean).
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.bitbucket.content.FileContentCallback

Public Constructors

public AbstractFileContentCallback ()

Public Methods

public void offerBlame (Page<Blame> blames)

If annotations were requested and at least one line was streamed, this method will be called before onEnd(FileSummary) to provide blame for the streamed lines.

Parameters
blames blame for the streamed lines
Throws
IOException

public void onBinary ()

Called once if the file is binary. None of the other methods will be called.

Throws
IOException

public void onEnd (FileSummary summary)

Called after the final line, and blame if requested, has been streamed.

Note: If there were no lines, this method may be called immediately after onStart(FileContext) without any calls to onLine(int, String, boolean).

Parameters
summary summarizes the file request and the streamed lines
Throws
IOException

public boolean onLine (int lineNumber, String line, boolean truncated)

Ignores the provided line details and returns true, which will continue streaming.

Parameters
lineNumber the line number of the line in the file
line a truncated line of code. The line character limit can be set at a system level via a system property
truncated where the received line was truncated
Returns
  • true
Throws
IOException may be thrown by derived classes

public void onStart (FileContext context)

Called before the first onLine(int, String, boolean).

Parameters
context provides details about the file request for which lines are being streamed
Throws
IOException