728x90
GetXcontroller에서 stream 걸어서
원하는 Firestore document를 감시하곤 한다.
그런데 해당 페이지를 벗어나게 되었을 때 stream을 풀어줘야. 원치 않는 firebase 서버 요청을 줄일 수 있다고 생각한다.
그래서 이번에는 stream을 cancel하는 방법을 알아보고자 한다.
아래와 같은 stackoverflow 답변을 참조하여 문제를 해결하였다.
https://stackoverflow.com/questions/44450758/cancel-stream-ondata
스트림을 아래와 같이 변수로 지정
StreamSubscription stream;
stream = inquireNetworkRepository.getChatRoomModelStream(makeruid).listen((newUserInquireRoom) async{
pageState = PageState.Loading;
logger.d("newUserInquireRoom 실행");
userInquireRoom = newUserInquireRoom;
await getFetchChatList(makeruid);
pageState = PageState.Done;
});
삭제하고 싶을 때
if (stream!=null){stream.cancel();}
728x90
'개발 > Flutter' 카테고리의 다른 글
DartPad (0) | 2022.01.24 |
---|---|
거꾸로 써서 위치가 아래부터 나올때 (0) | 2022.01.24 |
flutter scroll bottom으로 보내기 (0) | 2022.01.23 |
플러터 firebase 강좌 추천 (0) | 2022.01.02 |
Multi future builder 만들기 (0) | 2022.01.01 |