public void Send()
 {
     ProfilerNotifier.Increment(ProfilerConstants.NetworkTestData);
     m_Transport?.Send("testMessage");
     m_HasSentAnyData = true;
 }
 public static void ProfilerBeginTick()
 {
     ProfilerNotifier.ProfilerBeginTick();
 }
 public static void NotifyProfilerListeners()
 {
     ProfilerNotifier.NotifyProfilerListeners();
 }
 public void Initialize(bool useNullTransport)
 {
     m_Transport      = useNullTransport ? null : new TestTransport();
     m_HasSentAnyData = false;
     ProfilerNotifier.Initialize(this);
 }