本文整理汇总了Java中com.comphenix.protocol.events.ListenerPriority.LOWEST属性的典型用法代码示例。如果您正苦于以下问题:Java ListenerPriority.LOWEST属性的具体用法?Java ListenerPriority.LOWEST怎么用?Java ListenerPriority.LOWEST使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.comphenix.protocol.events.ListenerPriority
的用法示例。
在下文中一共展示了ListenerPriority.LOWEST属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: InterceptorTitle
public InterceptorTitle( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.TITLE );
}
示例2: InterceptorSlot
public InterceptorSlot( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.SET_SLOT, PacketType.Play.Server.WINDOW_ITEMS );
}
示例3: InterceptorChat
public InterceptorChat( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.CHAT );
}
示例4: InterceptorSettings
public InterceptorSettings( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Client.SETTINGS );
}
示例5: InterceptorScoreboard
public InterceptorScoreboard( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.SCOREBOARD_OBJECTIVE, PacketType.Play.Server.SCOREBOARD_SCORE, PacketType.Play.Server.SCOREBOARD_TEAM );
}
示例6: InterceptorSign
public InterceptorSign( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.TILE_ENTITY_DATA, PacketType.Play.Server.MAP_CHUNK );
}
示例7: InterceptorSign
public InterceptorSign( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.UPDATE_SIGN );
}
示例8: EquipmentListener
public EquipmentListener( NoGlintPlugin plugin ) {
super( plugin, ListenerPriority.LOWEST, PacketType.Play.Server.ENTITY_EQUIPMENT );
this.plugin = plugin;
}
示例9: ItemListener
public ItemListener( NoGlintPlugin plugin ) {
super( plugin, ListenerPriority.LOWEST, PacketType.Play.Server.SPAWN_ENTITY );
this.plugin = plugin;
}