org.fabric3.api.annotation.monitor.Debug类的使用及代码示例

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

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

Debug介绍

暂无

代码示例

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

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

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

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

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

/**
 * Callback when a deployment is received.
 */
@Debug("Deployment received")
void received();

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

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

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

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

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

/**
 * Callback when a deployment is completed.
 */
@Debug("Completed deployment")
void completed();

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

@Debug("Broadcasting availability to the domain")
  void broadcastAvailability();
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

相关文章

微信公众号

最新文章

更多

Debug类方法