本文整理了Java中org.fabric3.api.annotation.monitor.Debug.<init>()
方法的一些代码示例,展示了Debug.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Debug.<init>()
方法的具体详情如下:
包路径:org.fabric3.api.annotation.monitor.Debug
类名称:Debug
方法名:<init>
暂无
代码示例来源: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();
内容来源于网络,如有侵权,请联系作者删除!