Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/eventing/pages/eventing-overview.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Introduction to Eventing
= Run a Function on Data Change
:description: The Eventing Service lets you handle data changes in real time.

[abstract]
Expand Down
70 changes: 70 additions & 0 deletions modules/eventing/partials/nav.adoc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are all of these files on docs-devex now, or do the files still live on docs-server?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All files are in docs-devex!

Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
* xref:eventing:eventing-overview.adoc[Run a Function on Data Change]
** xref:eventing:eventing-Terminologies.adoc[Terminology]
** xref:eventing:eventing-language-constructs.adoc[Language Constructs]
*** xref:eventing:eventing-advanced-keyspace-accessors.adoc[Advanced Keyspace Accessors]
*** xref:eventing:eventing-timers.adoc[Timers]
*** xref:eventing:eventing-curl-spec.adoc[cURL]
** xref:eventing:eventing-lifecycle.adoc[Eventing Lifecycle]
** xref:eventing:eventing-buckets-to-collections.adoc[Buckets vs Collections]
** xref:eventing:eventing-rbac.adoc[Eventing Role-Based Access Control]
** xref:eventing:eventing-examples.adoc[Examples: Using the Eventing Service]
*** Step-by-Step Examples
**** xref:eventing:eventing-example-data-enrichment.adoc[Data Enrichment]
**** xref:eventing:eventing-examples-cascade-delete.adoc[Cascade Delete]
**** xref:eventing:eventing-examples-docexpiry.adoc[Document Expiry]
**** xref:eventing:eventing-examples-delete-v-expiry.adoc[Delete v Expiry]
**** xref:eventing:eventing-examples-docarchive.adoc[Document Archival]
**** xref:eventing:eventing-examples-cancel-overwrite-timer.adoc[Cancel or Overwrite Timer]
**** xref:eventing:eventing-examples-recurring-timer.adoc[Recurring Timer]
**** xref:eventing:eventing-examples-rest-via-curl-get.adoc[External REST via cURL GET]
**** xref:eventing:eventing-examples-high-risk.adoc[Risk Assessment]
*** Basic Accessor Functions
**** xref:eventing:eventing-handler-basicBucketOps.adoc[basicBucketOps]
**** xref:eventing:eventing-handler-curl-get.adoc[basicCurlGet]
**** xref:eventing:eventing-handler-curl-post.adoc[basicCurlPost]
**** xref:eventing:eventing-handler-simpleTimer.adoc[simpleTimer]
**** xref:eventing:eventing-handler-cascadeKvDeleteWithDoc.adoc[cascadeKvDeleteWithDoc]
**** xref:eventing:eventing-handler-redactSharedData.adoc[redactSharedData]
**** xref:eventing:eventing-handler-simpleFlatten.adoc[simpleFlatten]
**** xref:eventing:eventing-handler-fixEmailDomains.adoc[fixEmailDomains]
**** xref:eventing:eventing-handler-keepLastN.adoc[keepLastN]
**** xref:eventing:eventing-handler-docControlledSelfExpiry.adoc[docControlledSelfExpiry]
**** xref:eventing:eventing-handler-shippingNotifier.adoc[shippingNotifier]
**** xref:eventing:eventing-handler-ConvertBucketToCollections.adoc[ConvertBucketToCollections]
*** Basic {sqlpp} Functions
**** xref:eventing:eventing-handler-basicN1qlSelectStmt.adoc[]
**** xref:eventing:eventing-handler-basicN1qlPreparedSelectStmt.adoc[]
*** Generic Manipulation Functions
**** xref:eventing:eventing-handler-dateToEpochConversion.adoc[dateToEpochConversion]
**** xref:eventing:eventing-handler-deepCloneAndModify.adoc[deepCloneAndModify]
**** xref:eventing:eventing-handler-removeObjectStubs.adoc[removeObjectStubs]
**** xref:eventing:eventing-handler-removeNullsAndEmptys.adoc[removeNullsAndEmptys]
**** xref:eventing:eventing-handler-genericRename.adoc[genericRename]
**** xref:eventing:eventing-handler-genericFlatten.adoc[genericFlatten]
**** xref:eventing:eventing-handler-convertXMLtoJSON.adoc[convertXMLtoJSON]
**** xref:eventing:eventing-handler-convertAdvXMLtoJSON.adoc[convertAdvXMLtoJSON]
*** Advanced Accessor Functions
**** xref:eventing:eventing-handler-advancedGetOp.adoc[advancedGetOp]
**** xref:eventing:eventing-handler-advancedGetOpWithCache.adoc[advancedGetOpWithCache]
**** xref:eventing:eventing-handler-advancedInsertOp.adoc[advancedInsertOp]
**** xref:eventing:eventing-handler-advancedUpsertOp.adoc[advancedUpsertOp]
**** xref:eventing:eventing-handler-advancedReplaceOp.adoc[advancedReplaceOp]
**** xref:eventing:eventing-handler-advancedDeleteOp.adoc[advancedDeleteOp]
**** xref:eventing:eventing-handler-advancedIncrementOp.adoc[advancedIncrementOp]
**** xref:eventing:eventing-handler-advancedDecrementOp.adoc[advancedDecrementOp]
**** xref:eventing:eventing-handler-advancedTouchOp.adoc[advancedTouchOp]
**** xref:eventing:eventing-handler-advanced-keepLastN.adoc[advancedKeepLastN]
**** xref:eventing:eventing-handler-advanced-docControlledSelfExpiry.adoc[advancedDocControlledSelfExpiry]
**** xref:eventing:eventing-handler-multiCollectionEventing.adoc[multiCollectionEventing]
**** xref:eventing:eventing-handler-advancedSelfRecursion.adoc[advancedSelfRecursion]
**** xref:eventing:eventing-handler-advancedMutateInField.adoc[advancedMutateInField]
**** xref:eventing:eventing-handler-advancedMutateInArray.adoc[advancedMutateInArray]
*** Binary Document Support
**** xref:eventing:eventing-handler-basicBinaryKV.adoc[basicBinaryKV]
**** xref:eventing:eventing-handler-advancedBinaryKV.adoc[advancedBinaryKV]
*** Performance Functions
**** xref:eventing:eventing-handler-fasterToLocalString.adoc[fasterToLocalString]
** xref:eventing:eventing-debugging-and-diagnosability.adoc[Debugging and Diagnosability]
** xref:eventing:eventing-statistics.adoc[Statistics]
** xref:eventing:troubleshooting-best-practices.adoc[Troubleshooting and Best Practices]
** xref:eventing:eventing-faq.adoc[Frequently Asked Questions]