protected void deactivate()

in src/main/java/org/apache/sling/event/dea/impl/DistributedEventAdminImpl.java [106:115]


    protected void deactivate() {
        if ( this.receiver != null ) {
            this.receiver.stop();
            this.receiver = null;
        }
        if ( this.sender != null ) {
            this.sender.stop();
            this.sender = null;
        }
    }