You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/apis/java-client.md
+3-85Lines changed: 3 additions & 85 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,24 +3,6 @@ title: "Java Client"
3
3
sidebar_position: 1
4
4
---
5
5
6
-
<!--
7
-
Licensed to the Apache Software Foundation (ASF) under one
8
-
or more contributor license agreements. See the NOTICE file
9
-
distributed with this work for additional information
10
-
regarding copyright ownership. The ASF licenses this file
11
-
to you under the Apache License, Version 2.0 (the
12
-
"License"); you may not use this file except in compliance
13
-
with the License. You may obtain a copy of the License at
14
-
15
-
http://www.apache.org/licenses/LICENSE-2.0
16
-
17
-
Unless required by applicable law or agreed to in writing, software
18
-
distributed under the License is distributed on an "AS IS" BASIS,
19
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
-
See the License for the specific language governing permissions and
21
-
limitations under the License.
22
-
-->
23
-
24
6
# Fluss Java Client
25
7
## Overview
26
8
Fluss `Admin` API that supports asynchronous operations for managing and inspecting Fluss resources. It communicates with the Fluss cluster and provides methods for:
@@ -188,8 +170,8 @@ List<User> users = List.of(
188
170
);
189
171
```
190
172
191
-
**Note:** Currently data in Fluss is written in the form of `rows`, so we need to convert our POJO to `GenericRow`. You can use the `ConverterUtils` helper class (see below) or manually convert your objects as shown here:
192
-
173
+
**Note:** Currently data in Fluss is written in the form of `rows`, so we need to convert our POJO to `GenericRow`, while the Fluss community is working to provide
The `ConverterUtils` class is a helper utility for converting Java POJOs to Fluss's `InternalRow` format and vice versa. This utility simplifies the process of working with Fluss tables by handling the conversion between your domain objects and Fluss's internal row representation.
269
-
270
-
#### Usage Example
271
-
Here's an example of how to use `ConverterUtils` to convert between POJOs and Fluss rows:
272
-
273
-
```java
274
-
// Define your POJO class with a Default Constructor
0 commit comments