This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch ISIS-3255 in repository https://gitbox.apache.org/repos/asf/isis.git
commit 498bc2e1fd5a52755f462363e17be3909a5e55dc Author: Dan Haywood <[email protected]> AuthorDate: Thu Nov 3 19:49:39 2022 +0000 ISIS-3255: more fixes to docs --- ...roundService_PersistCommandExecutorService.adoc | 25 ++++++++++++++++++++++ core/adoc/modules/_overview/pages/about.adoc | 2 +- .../adoc/modules/executionoutbox/pages/about.adoc | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/antora/components/refguide-index/modules/extensions/pages/index/commandlog/applib/dom/BackgroundService_PersistCommandExecutorService.adoc b/antora/components/refguide-index/modules/extensions/pages/index/commandlog/applib/dom/BackgroundService_PersistCommandExecutorService.adoc new file mode 100644 index 0000000000..ad5d2bc4aa --- /dev/null +++ b/antora/components/refguide-index/modules/extensions/pages/index/commandlog/applib/dom/BackgroundService_PersistCommandExecutorService.adoc @@ -0,0 +1,25 @@ += BackgroundService.PersistCommandExecutorService +:Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or ag [...] + +== API + +[source,java] +.BackgroundService_PersistCommandExecutorService.java +---- +class PersistCommandExecutorService { + Future<T> submit(Callable<T> task) + Future<T> submit(Runnable task, T result) + Future<?> submit(Runnable task) + void execute(Runnable command) + List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) + List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) + T invokeAny(Collection<? extends Callable<T>> tasks) + T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) + void shutdown() + List<Runnable> shutdownNow() + boolean awaitTermination(long timeout, TimeUnit unit) + boolean isShutdown() + boolean isTerminated() +} +---- + diff --git a/core/adoc/modules/_overview/pages/about.adoc b/core/adoc/modules/_overview/pages/about.adoc index 59b57d1c8d..b803d7ceba 100644 --- a/core/adoc/modules/_overview/pages/about.adoc +++ b/core/adoc/modules/_overview/pages/about.adoc @@ -5597,7 +5597,7 @@ org.quartz-scheduler:quartz:jar:<managed> + .Document Index Entries **** -xref:refguide:extensions:index/commandlog/applib/app/CommandLogMenu.adoc[CommandLogMenu], xref:refguide:extensions:index/commandlog/applib/contributions/HasInteractionId_commandLogEntry.adoc[HasInteractionId_commandLogEntry], xref:refguide:extensions:index/commandlog/applib/contributions/HasUsername_recentCommandsByUser.adoc[HasUsername_recentCommandsByUser], xref:refguide:extensions:index/commandlog/applib/contributions/Object_recentCommands.adoc[Object_recentCommands], xref:refguide:ex [...] +xref:refguide:extensions:index/commandlog/applib/app/CommandLogMenu.adoc[CommandLogMenu], xref:refguide:extensions:index/commandlog/applib/contributions/HasInteractionId_commandLogEntry.adoc[HasInteractionId_commandLogEntry], xref:refguide:extensions:index/commandlog/applib/contributions/HasUsername_recentCommandsByUser.adoc[HasUsername_recentCommandsByUser], xref:refguide:extensions:index/commandlog/applib/contributions/Object_recentCommands.adoc[Object_recentCommands], xref:refguide:ex [...] **** |Apache Causeway Ext - Command Log Implementation (JDO) diff --git a/extensions/core/executionoutbox/adoc/modules/executionoutbox/pages/about.adoc b/extensions/core/executionoutbox/adoc/modules/executionoutbox/pages/about.adoc index 3c86613e9a..e4c258e930 100644 --- a/extensions/core/executionoutbox/adoc/modules/executionoutbox/pages/about.adoc +++ b/extensions/core/executionoutbox/adoc/modules/executionoutbox/pages/about.adoc @@ -152,7 +152,7 @@ This is shown below. .processing messages from the outbox image::outbox.png[width=600px] -The module provides a REST service, along with a rest client, xref:refguide:extensions:index/executionlog/restclient/api/OutboxClient.adoc[OutboxClient]. +The module provides a REST service, along with a rest client, xref:refguide:extensions:index/executionoutbox/restclient/api/OutboxClient.adoc[OutboxClient]. The `OutboxClient` is used by the _message processor_ shown in the above diagram.
