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
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ keywords:
---

import { RelatedReadContainer, RelatedReadItem } from '@site/src/components';
import ThemedImage from '@theme/ThemedImage';

:::tip SUPPORT, STABILITY, and DEPENDENCY INFO

Expand All @@ -49,6 +50,21 @@ Nexus supports cross-team, cross-domain, cross-namespace, multi-region, and mult

Unlike other forms of inter-service communication, Nexus combines a familiar programming model with the resiliency of the Temporal Platform and its queue-based Worker architecture.

Use the following decision tree to help determine if Nexus is right for your use case:

<div style={{textAlign: 'center', margin: '2rem 0'}}>
<a href="/diagrams/nexusadoptionlight.png" target="_blank" rel="noopener noreferrer">
<ThemedImage
alt="Should I use Nexus? Decision tree"
sources={{
light: '/diagrams/nexusadoptionlight.png',
dark: '/diagrams/nexusadoptiondark.png',
}}
style={{maxWidth: '100%', cursor: 'pointer'}}
/>
</a>
</div>

### Benefits

- **Integrated Temporal experience** \- with improved security, observability, and reliability.
Expand Down
13 changes: 13 additions & 0 deletions src/components/images/EnlargeImage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const EnlargeImage = ({ src, alt, ariaLabel }) => {
const label = ariaLabel || alt;

return (
<div style={{ textAlign: 'center', margin: '2rem 0' }}>
<a href={src} target="_blank" rel="noopener noreferrer">
<img src={src} alt={label} style={{ maxWidth: '100%', cursor: 'pointer' }} />
</a>
</div>
);
};

export default EnlargeImage;
1 change: 1 addition & 0 deletions src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export { default as JsonTable } from './formatting/JsonTable';

// Image components
export { default as CaptionedImage } from './images/CaptionedImage';
export { default as EnlargeImage } from './images/EnlargeImage';
export { default as ZoomingImage } from './images/ZoomingImage';

// Information components
Expand Down
Binary file added static/diagrams/nexusadoptiondark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/diagrams/nexusadoptionlight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.