mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Small fixes
This commit is contained in:
parent
fd4dcc0739
commit
41837479fc
3 changed files with 1 additions and 4 deletions
|
@ -95,7 +95,6 @@ public class DataTableImpl extends DataSourceImpl implements DataTable {
|
||||||
performInputExchange(sc, req, (ReadTableDataExchange.Response res, InputStream in) -> {
|
performInputExchange(sc, req, (ReadTableDataExchange.Response res, InputStream in) -> {
|
||||||
var r = new TypedDataStreamParser(info.getDataType());
|
var r = new TypedDataStreamParser(info.getDataType());
|
||||||
r.parseStructures(in, TypedDataStructureNodeReader.immutable(info.getDataType()), nodes::add);
|
r.parseStructures(in, TypedDataStructureNodeReader.immutable(info.getDataType()), nodes::add);
|
||||||
return true;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}.execute();
|
}.execute();
|
||||||
|
@ -121,7 +120,6 @@ public class DataTableImpl extends DataSourceImpl implements DataTable {
|
||||||
performInputExchange(sc, req,
|
performInputExchange(sc, req,
|
||||||
(ReadTableDataExchange.Response res, InputStream in) -> {
|
(ReadTableDataExchange.Response res, InputStream in) -> {
|
||||||
input = in;
|
input = in;
|
||||||
return false;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}.execute();
|
}.execute();
|
||||||
|
|
|
@ -27,7 +27,6 @@ public class StopExchange implements MessageExchange<StopExchange.Request, StopE
|
||||||
@Builder
|
@Builder
|
||||||
@Value
|
@Value
|
||||||
public static class Request implements RequestMessage {
|
public static class Request implements RequestMessage {
|
||||||
boolean force;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Jacksonized
|
@Jacksonized
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module io.xpipe.sample {
|
module io.xpipe.sample {
|
||||||
requires io.xpipe;
|
requires io.xpipe.api;
|
||||||
}
|
}
|
Loading…
Reference in a new issue