Skip to content
Snippets Groups Projects

Send message when a timeslot opens up.

Files

@@ -22,14 +22,14 @@ import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.context.annotation.RequestScope;
import nl.tudelft.labracore.api.AssignmentControllerApi;
import nl.tudelft.labracore.api.dto.AssignmentDetailsDTO;
import nl.tudelft.librador.cache.CoreCacheManager;
import nl.tudelft.queue.scope.CacheScope;
@Component
@RequestScope
@CacheScope
public class AssignmentCacheManager extends CoreCacheManager<Long, AssignmentDetailsDTO> {
@Autowired
private AssignmentControllerApi api;
Loading