File tree Expand file tree Collapse file tree 4 files changed +3
-10
lines changed
objectbox-java/src/main/java/io/objectbox/sync Expand file tree Collapse file tree 4 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2
+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
21
21
import javax .annotation .Nullable ;
22
22
23
23
import io .objectbox .BoxStore ;
24
- import io .objectbox .annotation .apihint .Experimental ;
25
24
import io .objectbox .sync .internal .Platform ;
26
25
import io .objectbox .sync .listener .SyncChangeListener ;
27
26
import io .objectbox .sync .listener .SyncCompletedListener ;
34
33
* A builder to create a {@link SyncClient}; the builder itself should be created via
35
34
* {@link Sync#client(BoxStore, String, SyncCredentials)}.
36
35
*/
37
- @ Experimental
38
36
@ SuppressWarnings ({"unused" , "WeakerAccess" })
39
37
public class SyncBuilder {
40
38
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2019-2021 ObjectBox Ltd. All rights reserved.
2
+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
38
38
* SyncClient is thread-safe.
39
39
*/
40
40
@ SuppressWarnings ("unused" )
41
- @ Experimental
42
41
public interface SyncClient extends Closeable {
43
42
44
43
/**
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2
+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
20
20
21
21
import javax .annotation .Nullable ;
22
22
23
- import io .objectbox .annotation .apihint .Experimental ;
24
23
import io .objectbox .sync .Sync ;
25
24
import io .objectbox .sync .listener .SyncChangeListener ;
26
25
27
26
/**
28
27
* ObjectBox sync server. Build a server with {@link Sync#server}.
29
28
*/
30
29
@ SuppressWarnings ("unused" )
31
- @ Experimental
32
30
public interface SyncServer extends Closeable {
33
31
34
32
/**
Original file line number Diff line number Diff line change 22
22
import javax .annotation .Nullable ;
23
23
24
24
import io .objectbox .BoxStore ;
25
- import io .objectbox .annotation .apihint .Experimental ;
26
25
import io .objectbox .flatbuffers .FlatBufferBuilder ;
27
26
import io .objectbox .sync .Credentials ;
28
27
import io .objectbox .sync .Sync ;
35
34
* Creates a {@link SyncServer} and allows to set additional configuration.
36
35
*/
37
36
@ SuppressWarnings ({"unused" , "UnusedReturnValue" })
38
- @ Experimental
39
37
public class SyncServerBuilder {
40
38
41
39
final BoxStore boxStore ;
You can’t perform that action at this time.
0 commit comments