Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Do I need to call dispose on directive $destroy event? #133

Open
@erceth

Description

@erceth

I have a situation where I have multiple directives that subscribe to a stream from a service. If a directive is destroyed do I need to unsubscribe from the stream so I don't have zombie listeners? Or does it get garbage collected. If I need to unsubscribe how do I do it? newZoneStream.dispose(); is undefined.

/*** Directive ***/
function panelController(rxService) {
    var vm = this;

    //private variables
    var newZoneStream = null;

    //public variables
    vm.zones = null;

    //public functions
    vm.init = init;
    vm.destroy = destroy;

    function init() {
        newZoneStream = rxService.getNewZoneStream();
        newZoneStream.subscribe(function(data) {
            vm.zones = data;
        });
    }

    function destroy() {
        // DO I NEED TO DISPOSE HERE?: newZoneStream.dispose(); ?
    }
}

function panelLink(scope, element, link, ctrl) {
    ctrl.init();
    scope.$on('$destroy', function() {
        ctrl.destroy();
    })

}


/*** Service ***/
function getNewZoneStream() {
    if (!newZonesStream) {
        newZonesStream = rx.Observable.create(function(observable) {
            socket.on("new-zones", function(data) {
                observable.onNext(data);
            });

            //clean up function
            return function() {
                //$sails.off("new-zones");
                console.log("new zones stream closed");
            }
        });
    }

    return newZonesStream;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions