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 11/*
2- * Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
2121import javax .annotation .Nullable ;
2222
2323import io .objectbox .BoxStore ;
24- import io .objectbox .annotation .apihint .Experimental ;
2524import io .objectbox .sync .internal .Platform ;
2625import io .objectbox .sync .listener .SyncChangeListener ;
2726import io .objectbox .sync .listener .SyncCompletedListener ;
3433 * A builder to create a {@link SyncClient}; the builder itself should be created via
3534 * {@link Sync#client(BoxStore, String, SyncCredentials)}.
3635 */
37- @ Experimental
3836@ SuppressWarnings ({"unused" , "WeakerAccess" })
3937public class SyncBuilder {
4038
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2019-2021 ObjectBox Ltd. All rights reserved.
2+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3838 * SyncClient is thread-safe.
3939 */
4040@ SuppressWarnings ("unused" )
41- @ Experimental
4241public interface SyncClient extends Closeable {
4342
4443 /**
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2+ * Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
2020
2121import javax .annotation .Nullable ;
2222
23- import io .objectbox .annotation .apihint .Experimental ;
2423import io .objectbox .sync .Sync ;
2524import io .objectbox .sync .listener .SyncChangeListener ;
2625
2726/**
2827 * ObjectBox sync server. Build a server with {@link Sync#server}.
2928 */
3029@ SuppressWarnings ("unused" )
31- @ Experimental
3230public interface SyncServer extends Closeable {
3331
3432 /**
Original file line number Diff line number Diff line change 2222import javax .annotation .Nullable ;
2323
2424import io .objectbox .BoxStore ;
25- import io .objectbox .annotation .apihint .Experimental ;
2625import io .objectbox .flatbuffers .FlatBufferBuilder ;
2726import io .objectbox .sync .Credentials ;
2827import io .objectbox .sync .Sync ;
3534 * Creates a {@link SyncServer} and allows to set additional configuration.
3635 */
3736@ SuppressWarnings ({"unused" , "UnusedReturnValue" })
38- @ Experimental
3937public class SyncServerBuilder {
4038
4139 final BoxStore boxStore ;
You can’t perform that action at this time.
0 commit comments