Initial reload command support.

What is missing:
- Changing/removing servers "in-flight"
- Query stuff
- A way to preserve existing user connections while closing the old port
This commit is contained in:
Andrew Steinborn
2018-11-19 23:46:22 -05:00
parent 74ee716480
commit 8685b04772
3 changed files with 84 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.velocitypowered.api.event.proxy;
/**
* This event is fired when the proxy is reloaded by the user using {@code /velocity reload}.
*/
public class ProxyReloadEvent {
@Override
public String toString() {
return "ProxyInitializeEvent";
}
}