Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultAsyncConsumerActionExecutor (0.4 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutor.java

     */
    public class DefaultAsyncConsumerActionExecutor implements AsyncConsumerActionExecutor {
        private final ConsumerActionExecutor actionExecutor;
        private final ManagedExecutor executor;
        private final ServiceLifecycle lifecycle;
    
        public DefaultAsyncConsumerActionExecutor(ConsumerActionExecutor actionExecutor, ExecutorFactory executorFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectionFactory.java

    import org.gradle.tooling.ProjectConnection;
    import org.gradle.tooling.internal.consumer.async.AsyncConsumerActionExecutor;
    import org.gradle.tooling.internal.consumer.async.DefaultAsyncConsumerActionExecutor;
    import org.gradle.tooling.internal.consumer.connection.CancellableConsumerActionExecutor;
    import org.gradle.tooling.internal.consumer.connection.ConsumerActionExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutorTest.groovy

        def actionExecuter = Mock(ConsumerActionExecutor) {
            getDisplayName() >> "[executer]"
        }
        def action = Mock(ConsumerAction)
        def handler = Mock(ResultHandlerVersion1)
        def connection = new DefaultAsyncConsumerActionExecutor(actionExecuter, executorFactory)
    
        def cleanup() {
            connection.stop()
        }
    
        def "runs action asynchronously"() {
            when:
            async {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top