本文整理汇总了Java中org.apache.catalina.deploy.MessageDestination类的典型用法代码示例。如果您正苦于以下问题:Java MessageDestination类的具体用法?Java MessageDestination怎么用?Java MessageDestination使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MessageDestination类属于org.apache.catalina.deploy包,在下文中一共展示了MessageDestination类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: addMessageDestination
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Add a message destination for this web application.
*
* @param md New message destination
*/
public void addMessageDestination(MessageDestination md) {
synchronized (messageDestinations) {
messageDestinations.put(md.getName(), md);
}
fireContainerEvent("addMessageDestination", md.getName());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:14,代码来源:StandardContext.java
示例2: findMessageDestination
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the message destination with the specified name, if any;
* otherwise, return <code>null</code>.
*
* @param name Name of the desired message destination
*/
public MessageDestination findMessageDestination(String name) {
synchronized (messageDestinations) {
return (messageDestinations.get(name));
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:14,代码来源:StandardContext.java
示例3: findMessageDestinations
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the set of defined message destinations for this web
* application. If none have been defined, a zero-length array
* is returned.
*/
public MessageDestination[] findMessageDestinations() {
synchronized (messageDestinations) {
MessageDestination results[] =
new MessageDestination[messageDestinations.size()];
return (messageDestinations.values().toArray(results));
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:15,代码来源:StandardContext.java
示例4: findMessageDestination
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the message destination with the specified name, if any;
* otherwise, return <code>null</code>.
*
* @param name Name of the desired message destination
*/
public MessageDestination findMessageDestination(String name) {
synchronized (messageDestinations) {
return ((MessageDestination) messageDestinations.get(name));
}
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:StandardContext.java
示例5: findMessageDestinations
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the set of defined message destinations for this web
* application. If none have been defined, a zero-length array
* is returned.
*/
public MessageDestination[] findMessageDestinations() {
synchronized (messageDestinations) {
MessageDestination results[] =
new MessageDestination[messageDestinations.size()];
return ((MessageDestination[])
messageDestinations.values().toArray(results));
}
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:16,代码来源:StandardContext.java
示例6: addMessageDestination
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Add a message destination for this web application.
*
* @param md
* New message destination
*/
public void addMessageDestination(MessageDestination md) {
synchronized (messageDestinations) {
messageDestinations.put(md.getName(), md);
}
fireContainerEvent("addMessageDestination", md.getName());
}
开发者ID:how2j,项目名称:lazycat,代码行数:15,代码来源:StandardContext.java
示例7: findMessageDestination
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the message destination with the specified name, if any;
* otherwise, return <code>null</code>.
*
* @param name
* Name of the desired message destination
*/
public MessageDestination findMessageDestination(String name) {
synchronized (messageDestinations) {
return (messageDestinations.get(name));
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:15,代码来源:StandardContext.java
示例8: findMessageDestinations
import org.apache.catalina.deploy.MessageDestination; //导入依赖的package包/类
/**
* Return the set of defined message destinations for this web application.
* If none have been defined, a zero-length array is returned.
*/
public MessageDestination[] findMessageDestinations() {
synchronized (messageDestinations) {
MessageDestination results[] = new MessageDestination[messageDestinations.size()];
return (messageDestinations.values().toArray(results));
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:13,代码来源:StandardContext.java
注:本文中的org.apache.catalina.deploy.MessageDestination类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论