summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-02-17 15:42:03 +0100
committergjoranv <gv@verizonmedia.com>2021-02-17 17:13:44 +0100
commit78049cc83d76315a6350804a7891ba0bbbfd474a (patch)
tree30a44eaa203caf3797e34cc28d90506112876534
parentc19c865b4718f8ab3f6dfa9a8037aeb5c6434f73 (diff)
Add package javadoc from the README file
.. to prepare for merging processing into container-core.
-rw-r--r--container-core/README.md2
-rw-r--r--processing/src/main/java/com/yahoo/processing/package-info.java12
2 files changed, 13 insertions, 1 deletions
diff --git a/container-core/README.md b/container-core/README.md
index 84f7943e2fa..a65e82c7ec5 100644
--- a/container-core/README.md
+++ b/container-core/README.md
@@ -1,4 +1,4 @@
<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
# Container core
-This module contains various core classes for JDisc container.
+This module contains core classes for JDisc container.
diff --git a/processing/src/main/java/com/yahoo/processing/package-info.java b/processing/src/main/java/com/yahoo/processing/package-info.java
index 969d7987981..b39272d881a 100644
--- a/processing/src/main/java/com/yahoo/processing/package-info.java
+++ b/processing/src/main/java/com/yahoo/processing/package-info.java
@@ -1,4 +1,16 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+/**
+ * Java library for request-response data processing.
+ *
+ * This library defines request-response processing as an operation which
+ * accepts a Request and produces a Response containing Data by executing
+ * a Chain of processing components in a single worker thread using method
+ * calls for chaining, i.e a synchronous processing model.
+ * Data for the Response may optionally be produced asynchronously.
+ *
+ * The processing model can be implemented by subtyping in frameworks defining
+ * a processing model (with a richer, more specific API) for a particular domain.
+ */
@ExportPackage
@PublicApi package com.yahoo.processing;