Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,11 @@ import com.google.firebase.dataconnect.FirebaseDataConnect
* All methods and properties of [GeneratedConnector] are thread-safe and may be safely called
* and/or accessed concurrently from multiple threads and/or coroutines.
*
* ### Stable for Inheritance (after graduating to "Generally Available")
* ### Stable for Inheritance
*
* The [GeneratedConnector] interface _is_ stable for inheritance in third-party libraries, as new
* methods will not be added to this interface and contracts of the existing methods will not be
* changed. Note, however, that this interface is still subject to changes, up to and including
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
* to "Generally Available" status.
* changed, except possibly during major version number changes.
*/
public interface GeneratedConnector<T : GeneratedConnector<T>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,11 @@ import kotlinx.serialization.SerializationStrategy
* All methods and properties of [GeneratedMutation] are thread-safe and may be safely called and/or
* accessed concurrently from multiple threads and/or coroutines.
*
* ### Stable for Inheritance (after graduating to "Generally Available")
* ### Stable for Inheritance
*
* The [GeneratedMutation] interface _is_ stable for inheritance in third-party libraries, as new
* methods will not be added to this interface and contracts of the existing methods will not be
* changed. Note, however, that this interface is still subject to changes, up to and including
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
* to "Generally Available" status.
* changed, except possibly during major version number changes.
*/
public interface GeneratedMutation<Connector : GeneratedConnector<Connector>, Data, Variables> :
GeneratedOperation<Connector, Data, Variables> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@ import kotlinx.serialization.SerializationStrategy
* All methods and properties of [GeneratedOperation] are thread-safe and may be safely called
* and/or accessed concurrently from multiple threads and/or coroutines.
*
* ### Stable for Inheritance (after graduating to "Generally Available")
* ### Stable for Inheritance
*
* The [GeneratedOperation] interface _is_ stable for inheritance in third-party libraries, as new
* methods will not be added to this interface and contracts of the existing methods will not be
* changed. Note, however, that this interface is still subject to changes, up to and including
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
* to "Generally Available" status.
* changed, except possibly during major version number changes.
*/
public interface GeneratedOperation<Connector : GeneratedConnector<Connector>, Data, Variables> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,11 @@ import kotlinx.serialization.SerializationStrategy
* All methods and properties of [GeneratedQuery] are thread-safe and may be safely called and/or
* accessed concurrently from multiple threads and/or coroutines.
*
* ### Stable for Inheritance (after graduating to "Generally Available")
* ### Stable for Inheritance
*
* The [GeneratedQuery] interface _is_ stable for inheritance in third-party libraries, as new
* methods will not be added to this interface and contracts of the existing methods will not be
* changed. Note, however, that this interface is still subject to changes, up to and including
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
* to "Generally Available" status.
* changed, except possibly during major version number changes.
*/
public interface GeneratedQuery<Connector : GeneratedConnector<Connector>, Data, Variables> :
GeneratedOperation<Connector, Data, Variables> {
Expand Down