# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: openide\util\src\org\openide\util # This patch can be applied using context Tools: Patch action on respective folder. # Above lines and this line are ignored by the patching process. Index: RequestProcessor.java *** openide\util\src\org\openide\util\RequestProcessor.java --- openide\util\src\org\openide\util\RequestProcessor.java *************** *** 192,198 **** * @return an instance of RequestProcessor that is capable of performing * "unlimited" (currently limited to 50, just for case of misuse) number * of requests in parallel. This instance is shared by anybody who ! * needs a way of performing sporadic or repeated asynchronous work. * * @since OpenAPI version 2.12 */ --- 192,205 ---- * @return an instance of RequestProcessor that is capable of performing * "unlimited" (currently limited to 50, just for case of misuse) number * of requests in parallel. This instance is shared by anybody who ! * needs a way of performing sporadic or repeated asynchronous work.
! * Tasks posted to this instance may be canceled until they start their ! * execution. If a there is a need to cancel a task while it is running ! * a seperate request processor needs to be created. * + * @see #RequestProcessor(String, int, boolean) + * @see RequestProcessor.Task#cancel + * * @since OpenAPI version 2.12 */ public static RequestProcessor getDefault() {