summaryrefslogtreecommitdiff
path: root/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2024-03-05 13:23:57 +0100
committerGitHub <noreply@github.com>2024-03-05 13:23:57 +0100
commit5864cbcbfe2eb8c36ca05c3a39c7e5916aeecaec (patch)
tree5b2773b8dc21c2e1b526fb70f829c376dd80532a /opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi
parentd28002a3c151d198298574312f32f1cb43f3a660 (diff)
Updated package versions, updated web server tests. (#207)
* Updated all package versions including kotlin. Updated all web-server tests to run. * Changed the java version of the tests. OpenDC now only supports java 19. * small update * test update * new update * updated docker version to 19 * updated docker version to 19
Diffstat (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi')
-rw-r--r--opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi/TraceFormat.kt16
1 files changed, 13 insertions, 3 deletions
diff --git a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi/TraceFormat.kt b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi/TraceFormat.kt
index 46ef051d..83537822 100644
--- a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi/TraceFormat.kt
+++ b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/spi/TraceFormat.kt
@@ -61,7 +61,10 @@ public interface TraceFormat {
* @throws IllegalArgumentException If [table] does not exist.
* @return The [TableDetails] for the specified [table].
*/
- public fun getDetails(path: Path, table: String): TableDetails
+ public fun getDetails(
+ path: Path,
+ table: String,
+ ): TableDetails
/**
* Open a [TableReader] for the specified [table].
@@ -72,7 +75,11 @@ public interface TraceFormat {
* @throws IllegalArgumentException If [table] does not exist.
* @return A [TableReader] instance for the table.
*/
- public fun newReader(path: Path, table: String, projection: List<String>?): TableReader
+ public fun newReader(
+ path: Path,
+ table: String,
+ projection: List<String>?,
+ ): TableReader
/**
* Open a [TableWriter] for the specified [table].
@@ -83,7 +90,10 @@ public interface TraceFormat {
* @throws UnsupportedOperationException If the format does not support writing.
* @return A [TableWriter] instance for the table.
*/
- public fun newWriter(path: Path, table: String): TableWriter
+ public fun newWriter(
+ path: Path,
+ table: String,
+ ): TableWriter
/**
* A helper object for resolving providers.