Exemplo n.º 1
0
 public jvmtiError SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     return(RawInterface.SetEventNotificationMode(this, mode, eventType, jthread.Null));
 }
Exemplo n.º 2
0
 public void SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     SetEventNotificationMode(mode, eventType, default(JvmThreadReference));
 }
Exemplo n.º 3
0
        public void SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType, JvmThreadReference eventThread)
        {
            jthread eventThreadHandle = (jthread)eventThread;

            ThrowOnFailure(_rawInterface.SetEventNotificationMode(_env, mode, eventType, eventThreadHandle));
        }
Exemplo n.º 4
0
 public jvmtiError SetEventNotificationMode(JvmEventMode mode, JvmEventType eventType)
 {
     return RawInterface.SetEventNotificationMode(this, mode, eventType, jthread.Null);
 }