Here is a working example of such a service: http://plnkr.co/edit/fJwRER?p=preview.
It creates a $q deferred object that will be resolved when the debounced function is finally called.
Each time the debounce function is called the promise to the next call of the inner function is returned.
app.factory('debounce', function($timeout, $q) {
return function(func, wait, immediate) {
var timeout;
var deferred = $q.defer();
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if(!immediate) {
deferred.resolve(func.apply(context, args));
deferred = $q.defer();
}
};
var callNow = immediate && !timeout;
if ( timeout ) {
$timeout.cancel(timeout);
}
timeout = $timeout(later, wait);
if (callNow) {
deferred.resolve(func.apply(context,args));
deferred = $q.defer();
}
return deferred.promise;
};
};
});
You get the return value from the debounced function by using the then method on the promise.
$scope.logReturn = function(msg) {
var returned = debounce($scope.addMsg, 2000, false);
console.log('Log: ', returned);
returned.then(function(value) {
console.log('Resolved:', value);
});
};
If you call logReturn multiple times in quick succession you will see the promise logged over and over but only one resolved message.