All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dream.configs.MySSEEmitter Maven / Gradle / Ivy

The newest version!
package com.dream.configs;

import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;

import lombok.Getter;

@Getter
public class MySSEEmitter extends SseEmitter {

	long age;
	
	public MySSEEmitter(Long timeout) {
		super(timeout);
		this.age = System.currentTimeMillis();
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy