15 changed files with 111 additions and 15 deletions
@ -0,0 +1,31 @@ |
|||||
|
package app.annotations.impl; |
||||
|
|
||||
|
import app.updates.PlayersUpdater; |
||||
|
import org.aspectj.lang.annotation.Aspect; |
||||
|
import org.aspectj.lang.annotation.Before; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.context.annotation.Configuration; |
||||
|
|
||||
|
import java.time.Instant; |
||||
|
|
||||
|
@Aspect |
||||
|
@Configuration |
||||
|
public class UpdatePlayersAspect { |
||||
|
PlayersUpdater playersUpdater; |
||||
|
private long last_burst_update = 0; |
||||
|
private int burst_timeout = 5; |
||||
|
|
||||
|
@Autowired |
||||
|
public UpdatePlayersAspect(PlayersUpdater playersUpdater) { |
||||
|
this.playersUpdater = playersUpdater; |
||||
|
} |
||||
|
|
||||
|
@Before("@annotation(app.annotations.interfaces.BurstUpdatePlayers) && args(..)") |
||||
|
public void before() { |
||||
|
if (Instant.now().getEpochSecond() - last_burst_update < burst_timeout) { |
||||
|
return; |
||||
|
} |
||||
|
playersUpdater.burstUpdater(); |
||||
|
last_burst_update = Instant.now().getEpochSecond(); |
||||
|
} |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
package app.annotations.interfaces; |
||||
|
|
||||
|
import java.lang.annotation.ElementType; |
||||
|
import java.lang.annotation.Retention; |
||||
|
import java.lang.annotation.RetentionPolicy; |
||||
|
import java.lang.annotation.Target; |
||||
|
|
||||
|
@Retention(RetentionPolicy.RUNTIME) |
||||
|
@Target(ElementType.METHOD) |
||||
|
public @interface BurstUpdatePlayers { |
||||
|
} |
Loading…
Reference in new issue