* List of methods that are allowed to be called remotely.
(...rpc: U[])
| 55 | * List of methods that are allowed to be called remotely. |
| 56 | */ |
| 57 | rpc<U extends InferDurableIteratorObjectRPC<T>>(...rpc: U[]): Omit<DurableIterator<T, U>, 'rpc'> { |
| 58 | return new DurableIterator<T, U>(this.chn, { |
| 59 | ...this.options, |
| 60 | rpc, |
| 61 | }) |
| 62 | } |
| 63 | |
| 64 | then<TResult1 = ClientDurableIterator<T, RPC>, TResult2 = never>( |
| 65 | onfulfilled?: ((value: ClientDurableIterator<T, RPC>) => TResult1 | PromiseLike<TResult1>) | null | undefined, |
no outgoing calls
no test coverage detected