Skip to content

Instantly share code, notes, and snippets.

@tx-TEM
Last active July 17, 2023 22:37
Show Gist options
  • Save tx-TEM/b871a11569603f5459982064295b8766 to your computer and use it in GitHub Desktop.
Save tx-TEM/b871a11569603f5459982064295b8766 to your computer and use it in GitHub Desktop.
combineのキャンセルについてのメモ

https://developer.apple.com/documentation/combine/anycancellable

Subscriber implementations can use this type to provide a “cancellation token” that makes it possible for a caller to cancel a publisher, but not to use the Subscription object to request items. An AnyCancellable instance automatically calls cancel() when deinitialized.

deinitで自動的にキャンセルが呼ばれるので、明示的にキャンセルを呼ぶ必要はなさそう

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment