Skip to content

Instantly share code, notes, and snippets.

@pubudu91
Created May 2, 2016 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pubudu91/75080557f7639f79e6f30a2845ca411e to your computer and use it in GitHub Desktop.
Save pubudu91/75080557f7639f79e6f30a2845ca411e to your computer and use it in GitHub Desktop.
@startuml
#Defining my integration flow
myIntegrationFlow as IntegrationFlow
//This is a sample inbound endpoint
sampleHTTPinbound as InboundEndpoint(protocol("http"),port(8290),context("/sample/request"))
samplePipeline as Pipeline("message_flow_1")
sampleHTTPinbound =>+ samplePipeline comment "client request"
log("before test mediator") as Mediator
SampleCustomMediator() as Mediator
log("after after test mediator") as Mediator
samplePipeline =>- sampleHTTPinbound comment "Final Response"
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment