java.lang.Object | |
↳ | org.mybatis.generator.internal.NullProgressCallback |
![]() |
This class implements a progress callback that does nothing. It is used when the client passes in a null for the ProgressCallback.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
The method is called periodically during a long running method.
| |||||||||||
This method is called when all generated files have been saved
| |||||||||||
Called to note the start of the generation phase, and to note the maximum
number of startTask messages that will be sent for the generation phase.
| |||||||||||
Called to note the start of the introspection phase, and to note the
maximum number of startTask messages that will be sent for the
introspection phase.
| |||||||||||
Called to note the start of the file saving phase, and to note the
maximum number of startTask messages that will be sent for the file
saving phase phase.
| |||||||||||
Called to denote the beginning of a save task
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
The method is called periodically during a long running method.
If the the implementation throws InterruptedException
then
the method will be canceled. Any files that have already been saved will
remain on the file system.
InterruptedException |
---|
This method is called when all generated files have been saved
Called to note the start of the generation phase, and to note the maximum number of startTask messages that will be sent for the generation phase.
totalTasks | the maximum number of times startTask will be called for the generation phase. |
---|
Called to note the start of the introspection phase, and to note the maximum number of startTask messages that will be sent for the introspection phase.
totalTasks | the maximum number of times startTask will be called for the introspection phase. |
---|
Called to note the start of the file saving phase, and to note the maximum number of startTask messages that will be sent for the file saving phase phase.
totalTasks | the maximum number of times startTask will be called for the file saving phase. |
---|
Called to denote the beginning of a save task
taskName | a descriptive name of the current work step |
---|