-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fixed #67]: Added OverthereExecutionOutputHandler, deprecated Overth…
…ereProcessOutputHandler
- Loading branch information
1 parent
9008ad3
commit f032f7c
Showing
20 changed files
with
532 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/java/com/xebialabs/overthere/OverthereExecutionOutputHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.xebialabs.overthere; | ||
|
||
public interface OverthereExecutionOutputHandler { | ||
/** | ||
* Invoked when an executed command generates a single character of output. | ||
* | ||
* @param c | ||
* the character of output generated. | ||
*/ | ||
void handleChar(char c); | ||
|
||
/** | ||
* Invoked when an executed command generated a line of output. | ||
* | ||
* @param line | ||
* the line of output generated. | ||
*/ | ||
void handleLine(String line); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.