< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/Fiber.java

Print this page

        

*** 317,327 **** * <p/> * <p/> * This method works like {@link Thread#start()}. * * @param tubeline The first tube of the tubeline that will act on the packet. ! * @param request The request packet to be passed to <tt>startPoint.processRequest()</tt>. * @param completionCallback The callback to be invoked when the processing is finished and the * final response packet is available. * @see #runSync(Tube, Packet) */ public void start(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) { --- 317,327 ---- * <p/> * <p/> * This method works like {@link Thread#start()}. * * @param tubeline The first tube of the tubeline that will act on the packet. ! * @param request The request packet to be passed to {@code startPoint.processRequest()}. * @param completionCallback The callback to be invoked when the processing is finished and the * final response packet is available. * @see #runSync(Tube, Packet) */ public void start(@NotNull Tube tubeline, @NotNull Packet request, @Nullable CompletionCallback completionCallback) {
*** 383,393 **** * This method works like {@link Thread#start()}. * * @param tubeline * The first tube of the tubeline that will act on the packet. * @param request ! * The request packet to be passed to <tt>startPoint.processRequest()</tt>. * @param completionCallback * The callback to be invoked when the processing is finished and the * final response packet is available. * * @see #start(Tube,Packet,CompletionCallback) --- 383,393 ---- * This method works like {@link Thread#start()}. * * @param tubeline * The first tube of the tubeline that will act on the packet. * @param request ! * The request packet to be passed to {@code startPoint.processRequest()}. * @param completionCallback * The callback to be invoked when the processing is finished and the * final response packet is available. * * @see #start(Tube,Packet,CompletionCallback)
*** 833,844 **** * } * } * </pre> * * @param tubeline The first tube of the tubeline that will act on the packet. ! * @param request The request packet to be passed to <tt>startPoint.processRequest()</tt>. ! * @return The response packet to the <tt>request</tt>. * @see #start(Tube, Packet, CompletionCallback) */ public @NotNull Packet runSync(@NotNull Tube tubeline, @NotNull Packet request) { --- 833,844 ---- * } * } * </pre> * * @param tubeline The first tube of the tubeline that will act on the packet. ! * @param request The request packet to be passed to {@code startPoint.processRequest()}. ! * @return The response packet to the {@code request}. * @see #start(Tube, Packet, CompletionCallback) */ public @NotNull Packet runSync(@NotNull Tube tubeline, @NotNull Packet request) {
< prev index next >