-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathOutputBuffer.java
More file actions
59 lines (49 loc) · 1.8 KB
/
OutputBuffer.java
File metadata and controls
59 lines (49 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package org.utplsql.api.outputBuffer;
import org.utplsql.api.reporter.Reporter;
import java.io.PrintStream;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
import java.util.function.Consumer;
public interface OutputBuffer {
Reporter getReporter();
/**
* Override the fetchSize of the OutputBuffer
*
* @param fetchSize the ResultSet fetch-size.
* @return this Output-Buffer
*/
OutputBuffer setFetchSize(int fetchSize);
/**
* Print the lines as soon as they are produced and write to a PrintStream.
*
* @param conn DB connection
* @param ps the PrintStream to be used, e.g: System.out
* @throws SQLException any sql errors
*/
void printAvailable(Connection conn, PrintStream ps) throws SQLException;
/**
* Print the lines as soon as they are produced and write to a list of PrintStreams.
*
* @param conn DB connection
* @param printStreams the PrintStream list to be used, e.g: System.out, new PrintStream(new FileOutputStream)
* @throws SQLException any sql errors
*/
void printAvailable(Connection conn, List<PrintStream> printStreams) throws SQLException;
/**
* Print the lines as soon as they are produced and call the callback passing the new line.
*
* @param conn DB connection
* @param onLineFetched the callback to be called
* @throws SQLException any sql errors
*/
void fetchAvailable(Connection conn, Consumer<String> onLineFetched) throws SQLException;
/**
* Get all lines from output buffer and return it as a list of strings.
*
* @param conn DB connection
* @return the lines
* @throws SQLException any sql errors
*/
List<String> fetchAll(Connection conn) throws SQLException;
}