本文整理汇总了Java中com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor类的典型用法代码示例。如果您正苦于以下问题:Java FiberContextSwitchInterceptor类的具体用法?Java FiberContextSwitchInterceptor怎么用?Java FiberContextSwitchInterceptor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FiberContextSwitchInterceptor类属于com.sun.xml.internal.ws.api.pipe包,在下文中一共展示了FiberContextSwitchInterceptor类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: process
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
public void process(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor ) {
schedule(request,callback,interceptor);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:WSEndpoint.java
示例2: schedule
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
@Override
public void schedule(Packet request, CompletionCallback callback, FiberContextSwitchInterceptor interceptor) {
this.wsEndpoint.schedule(request, callback, interceptor);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:WSEndpointMOMProxy.java
示例3: schedule
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
public void schedule(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor) {
processAsync(request, callback, interceptor, true);
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:4,代码来源:WSEndpointImpl.java
示例4: process
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
@Override
public void process(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor) {
processAsync(request, callback, interceptor, false);
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:5,代码来源:WSEndpointImpl.java
示例5: schedule
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
/**
* Schedule invocation of web service asynchronously.
*
* @see #schedule(Packet, CompletionCallback)
*
* @param request web service request
* @param callback callback to get response packet(exception if there is one)
* @param interceptor caller's interceptor to impose a context of execution
*/
public abstract void schedule(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor );
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:WSEndpoint.java
示例6: schedule
import com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor; //导入依赖的package包/类
/**
* Schedule invocation of web service asynchronously.
*
* @see {@link #schedule(Packet, CompletionCallback)}
*
* @param request web service request
* @param callback callback to get response packet(exception if there is one)
* @param interceptor caller's interceptor to impose a context of execution
*/
public abstract void schedule(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor );
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:11,代码来源:WSEndpoint.java
注:本文中的com.sun.xml.internal.ws.api.pipe.FiberContextSwitchInterceptor类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论