GetCachedTimeNs returns the current time in nanoseconds. Exported for use by other packages that need fast time access.
()
| 41 | // GetCachedTimeNs returns the current time in nanoseconds. |
| 42 | // Exported for use by other packages that need fast time access. |
| 43 | func GetCachedTimeNs() int64 { |
| 44 | return getCachedTimeNs() |
| 45 | } |
| 46 | |
| 47 | // Global atomic counter for connection IDs |
| 48 | var connIDCounter uint64 |
no test coverage detected