This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* AppCache audio tag caching fix main code | |
*/ | |
(function () { | |
//document.addEventListener("DOMContentLoaded", function () { | |
hashCode = function (str) { | |
var hash = 0; | |
if (str.length == 0) return hash; | |
for (var i = 0; i < str.length; i++) { | |
char = str.charCodeAt(i); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.exceedscm.crawler.monitoring; | |
import lombok.NonNull; | |
import lombok.RequiredArgsConstructor; | |
import org.springframework.stereotype.Service; | |
import reactor.core.publisher.Flux; | |
import reactor.core.publisher.Mono; | |
import reactor.core.publisher.UnicastProcessor; | |
import ru.exceedscm.crawler.task.TaskJobFactory; | |
import ru.exceedscm.crawler.task.dto.TaskDescription; |