org.fabric3.api.annotation.monitor.Debug.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(252)

本文整理了Java中org.fabric3.api.annotation.monitor.Debug.<init>()方法的一些代码示例,展示了Debug.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Debug.<init>()方法的具体详情如下:
包路径:org.fabric3.api.annotation.monitor.Debug
类名称:Debug
方法名:<init>

Debug.<init>介绍

暂无

代码示例

代码示例来源:origin: org.fabric3/fabric3-federation-deployment

  1. /**
  2. * Callback when an update request is received from a runtime.
  3. *
  4. * @param id the runtime id.
  5. */
  6. @Debug("Update request received from {0}")
  7. void updateRequest(String id);

代码示例来源:origin: org.fabric3/fabric3-jetty

  1. /**
  2. * Captures Jetty debug events.
  3. *
  4. * @param msg the debug message
  5. * @param args arguments
  6. */
  7. @Debug("Jetty debug: {0} \n {1}")
  8. void debug(String msg, Object... args);

代码示例来源:origin: org.fabric3/fabric3-federation-deployment

  1. /**
  2. * Callback when a deployment is received.
  3. */
  4. @Debug("Deployment received")
  5. void received();

代码示例来源:origin: com.carecon.fabric3/fabric3-binding-ws

  1. @Debug("Service unavailable. Attempting retry")
  2. void serviceUnavailableRetry(Throwable t);
  3. }

代码示例来源:origin: org.codehaus.fabric3/fabric3-jetty

  1. /**
  2. * Captures Jetty debug events.
  3. *
  4. * @param msg the debug message
  5. * @param args arguments
  6. */
  7. @Debug("Jetty debug: {0} \n {1}")
  8. void debug(String msg, Object... args);

代码示例来源:origin: org.fabric3/fabric3-federation-deployment

  1. /**
  2. * Callback when a deployment is completed.
  3. */
  4. @Debug("Completed deployment")
  5. void completed();

代码示例来源:origin: org.codehaus.fabric3/fabric3-federation-jgroups

  1. @Debug("Broadcasting availability to the domain")
  2. void broadcastAvailability();
  3. }

代码示例来源:origin: com.carecon.fabric3/fabric3-binding-jms

  1. @Debug("Number of receivers increased to {0}")
  2. void increaseReceivers(int count);

代码示例来源:origin: org.codehaus.fabric3/fabric3-monitor-impl

  1. @Debug("Phased backoff with lock strategy enabled on monitor ring buffer. Spin timeout (ns): {0}. Yield timeout (ns): {1}.")
  2. void phasedBackoffWithLockStrategy(long spinTimeoutNanos, long yieldTimeoutNanos);

代码示例来源:origin: org.codehaus.fabric3/fabric3-federation-jgroups

  1. @Debug("Received message from: {0}")
  2. void receiveMessage(String runtimeName);

代码示例来源:origin: org.codehaus.fabric3/fabric3-federation-jgroups

  1. @Debug("Runtime removed from the domain: {0")
  2. void runtimeRemoved(String runtimeName);

代码示例来源:origin: org.fabric3/fabric3-monitor-impl

  1. @Debug("Blocking strategy enabled on monitor ring buffer")
  2. void blockingStrategy();

代码示例来源:origin: org.fabric3/fabric3-monitor-impl

  1. @Debug("Phased backoff with sleep strategy enabled on monitor ring buffer. Spin timeout (ns): {0}. Yield timeout (ns): {1}.")
  2. void phasedBackoffWithSleepStrategy(long spinTimeoutNanos, long yieldTimeoutNanos);

代码示例来源:origin: org.fabric3/fabric3-monitor-impl

  1. @Debug("Timeout strategy enabled on monitor ring buffer. Timeout (ns): {0}.")
  2. void timeoutStrategy(long timeoutNanos);

代码示例来源:origin: org.fabric3/fabric3-federation-deployment

  1. @Debug("Sending update to {0}")
  2. void sendingUpdate(String id);

代码示例来源:origin: com.carecon.fabric3/fabric3-binding-jms

  1. @Debug("Number of receivers decreased to {0}")
  2. void decreaseReceivers(int count);

代码示例来源:origin: com.carecon.fabric3/fabric3-binding-jms

  1. @Debug("Error starting connection {0}")
  2. void startConnectionError(Throwable e);

代码示例来源:origin: org.fabric3/fabric3-binding-ftp

  1. @Debug("Command sent: {0}")
  2. void onCommand(String command);

代码示例来源:origin: org.fabric3/fabric3-binding-ws-metro

  1. @Debug("Service unavailable. Attempting retry")
  2. void serviceUnavailableRetry(Throwable t);
  3. }

代码示例来源:origin: org.codehaus.fabric3/fabric3-monitor-impl

  1. @Debug("Blocking strategy enabled on monitor ring buffer")
  2. void blockingStrategy();

相关文章

Debug类方法