norangebit b50890b44f
All checks were successful
continuous-integration/drone/tag Build is passing
refactoring
2020-05-03 19:38:55 +02:00

12 lines
225 B
Kotlin

package util.network.epidemic.packet
import util.network.simulator.packet.PayloadPacket
interface EpidemicPacket<T> : PayloadPacket<T> {
val type: Type
enum class Type {
PUSH, PULL, PUSHPULL, REPLY
}
}