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
|`http.paging`|`PagedIterable<T>`, `PagedResponse<T>`, `PagingOptions` with `byPage()` and `stream()` accessors. |
259
-
|`pagination`|`Paginator<T>` (with a `maxPages` safety cap) over cursor / page-number / link-header `PaginationStrategy` implementations, plus `Page<T>` / `SimplePage<T>`. |
259
+
|`pagination`|`Paginator<T>` (with a `maxPages` safety cap) over cursor / page-number / link-header `PaginationStrategy` implementations, plus `Page<T>` / `SimplePage<T>`. Token-style APIs use `CursorPaginationStrategy` with the query-param name set (e.g. `"page_token"`). |
260
260
|`pipeline`| Recovery-aware primitives: `RequestPipeline`, `ResponsePipeline`, `ExecutionPipeline` over a sealed `ResponseOutcome`, with steps (`pipeline.step`, `pipeline.step.retry`) like `RetryStep`, `ResponseRecoveryStep`, `IdempotencyKeyStep`, `ClientIdentityStep`. |
Copy file name to clipboardExpand all lines: sdk-core/api/sdk-core.api
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1960,12 +1960,25 @@ public abstract interface class org/dexpace/sdk/core/io/Source : java/io/Closeab
1960
1960
}
1961
1961
1962
1962
public final class org/dexpace/sdk/core/pagination/CursorPaginationStrategy : org/dexpace/sdk/core/pagination/PaginationStrategy {
1963
-
public fun <init> (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)V
1964
-
public fun <init> (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Ljava/lang/String;)V
1965
-
public synthetic fun <init> (Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
1963
+
public fun <init> (Lkotlin/jvm/functions/Function1;)V
1964
+
public fun <init> (Lkotlin/jvm/functions/Function1;Ljava/lang/String;)V
1965
+
public synthetic fun <init> (Lkotlin/jvm/functions/Function1;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
1966
1966
public fun parse (Lorg/dexpace/sdk/core/http/response/Response;Lorg/dexpace/sdk/core/http/request/Request;)Lorg/dexpace/sdk/core/pagination/Page;
1967
1967
}
1968
1968
1969
+
public final class org/dexpace/sdk/core/pagination/CursorResult {
1970
+
public fun <init> (Ljava/util/List;Ljava/lang/String;)V
1971
+
public final fun component1 ()Ljava/util/List;
1972
+
public final fun component2 ()Ljava/lang/String;
1973
+
public final fun copy (Ljava/util/List;Ljava/lang/String;)Lorg/dexpace/sdk/core/pagination/CursorResult;
1974
+
public static synthetic fun copy$default (Lorg/dexpace/sdk/core/pagination/CursorResult;Ljava/util/List;Ljava/lang/String;ILjava/lang/Object;)Lorg/dexpace/sdk/core/pagination/CursorResult;
1975
+
public fun equals (Ljava/lang/Object;)Z
1976
+
public final fun getItems ()Ljava/util/List;
1977
+
public final fun getNextCursor ()Ljava/lang/String;
1978
+
public fun hashCode ()I
1979
+
public fun toString ()Ljava/lang/String;
1980
+
}
1981
+
1969
1982
public final class org/dexpace/sdk/core/pagination/LinkHeaderPaginationStrategy : org/dexpace/sdk/core/pagination/PaginationStrategy {
1970
1983
public fun <init> (Lkotlin/jvm/functions/Function1;)V
1971
1984
public fun <init> (Lkotlin/jvm/functions/Function1;Ljava/lang/String;)V
0 commit comments