Prepare for updating server patches
This commit is contained in:
		
					parent
					
						
							
								79b873c901
							
						
					
				
			
			
				commit
				
					
						a8ef7aa56f
					
				
			
		
					 1193 changed files with 301 additions and 362 deletions
				
			
		
							
								
								
									
										62
									
								
								patches/unapplied/api/0192-Add-tick-times-API.patch
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								patches/unapplied/api/0192-Add-tick-times-API.patch
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,62 @@ | |||
| From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||||
| From: William Blake Galbreath <Blake.Galbreath@GMail.com> | ||||
| Date: Sun, 5 Apr 2020 22:22:58 -0500 | ||||
| Subject: [PATCH] Add tick times API | ||||
| 
 | ||||
| 
 | ||||
| diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
 | ||||
| index caa3d77b5906a2227f6409a877bd0ba14d05caba..411d06b14a0892531ac578e51d0b166f670adbd6 100644
 | ||||
| --- a/src/main/java/org/bukkit/Bukkit.java
 | ||||
| +++ b/src/main/java/org/bukkit/Bukkit.java
 | ||||
| @@ -1720,6 +1720,25 @@ public final class Bukkit {
 | ||||
|      public static double[] getTPS() { | ||||
|          return server.getTPS(); | ||||
|      } | ||||
| +
 | ||||
| +    /**
 | ||||
| +     * Get a sample of the servers last tick times (in nanos)
 | ||||
| +     *
 | ||||
| +     * @return A sample of the servers last tick times (in nanos)
 | ||||
| +     */
 | ||||
| +    @NotNull
 | ||||
| +    public static long[] getTickTimes() {
 | ||||
| +        return server.getTickTimes();
 | ||||
| +    }
 | ||||
| +
 | ||||
| +    /**
 | ||||
| +     * Get the average tick time (in millis)
 | ||||
| +     *
 | ||||
| +     * @return Average tick time (in millis)
 | ||||
| +     */
 | ||||
| +    public static double getAverageTickTime() {
 | ||||
| +        return server == null ? 0D : server.getAverageTickTime();
 | ||||
| +    }
 | ||||
|      // Paper end | ||||
|   | ||||
|      /** | ||||
| diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
 | ||||
| index bf1920857008c272d557f602544009986c3ed284..1cabf4de832b60abae8c25c0d80d409e8fa727cc 100644
 | ||||
| --- a/src/main/java/org/bukkit/Server.java
 | ||||
| +++ b/src/main/java/org/bukkit/Server.java
 | ||||
| @@ -1460,6 +1460,21 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
 | ||||
|       */ | ||||
|      @NotNull | ||||
|      public double[] getTPS(); | ||||
| +
 | ||||
| +    /**
 | ||||
| +     * Get a sample of the servers last tick times (in nanos)
 | ||||
| +     *
 | ||||
| +     * @return A sample of the servers last tick times (in nanos)
 | ||||
| +     */
 | ||||
| +    @NotNull
 | ||||
| +    long[] getTickTimes();
 | ||||
| +
 | ||||
| +    /**
 | ||||
| +     * Get the average tick time (in millis)
 | ||||
| +     *
 | ||||
| +     * @return Average tick time (in millis)
 | ||||
| +     */
 | ||||
| +    double getAverageTickTime();
 | ||||
|      // Paper end | ||||
|   | ||||
|      // Paper start | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jason Penilla
				Jason Penilla