aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-11-23 18:29:05 -0800
committerGitHub <noreply@github.com>2021-11-23 18:29:05 -0800
commit120ad1520db9184ebfa00885066e06a9f976e5f6 (patch)
tree50835fa79cf15ff348be386c46cea0a05552ba74 /app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt
parente246b35323e27dd18fa48910e5ca95669b53f8b0 (diff)
parentdb646e23ce0047461e68be1af7021ce6171ac850 (diff)
downloadfrost-120ad1520db9184ebfa00885066e06a9f976e5f6.tar.gz
frost-120ad1520db9184ebfa00885066e06a9f976e5f6.tar.bz2
frost-120ad1520db9184ebfa00885066e06a9f976e5f6.zip
Merge pull request #1857 from AllanWang/flows
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt b/app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt
index 10c612c5..beac7494 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/fragments/FragmentContract.kt
@@ -22,7 +22,6 @@ import com.pitchedapps.frost.contracts.FrostContentParent
import com.pitchedapps.frost.contracts.MainActivityContract
import com.pitchedapps.frost.contracts.MainFabContract
import com.pitchedapps.frost.views.FrostRecyclerView
-import kotlinx.coroutines.channels.ReceiveChannel
/**
* Created by Allan Wang on 2017-11-07.
@@ -77,15 +76,8 @@ interface FragmentContract : FrostContentContainer {
/**
* Call whenever a fragment is attached so that it may listen
* to activity emissions.
- * Returns a means of closing the listener, which can be called from [detachMainObservable]
*/
- fun attachMainObservable(contract: MainActivityContract): ReceiveChannel<Int>
-
- /**
- * Call when fragment is detached so that any existing
- * observable is disposed
- */
- fun detachMainObservable()
+ fun attach(contract: MainActivityContract)
/*
* -----------------------------------------