File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ Send action is used to send a JMS message into a queue.
20
20
21
21
You can do one-way/fire-and-forget style invocation, i.e. send message to queue and done.
22
22
23
+ <div class =" video-container " >
24
+ <iframe width="560" height="315" src="https://www.youtube.com/embed/EZzxLVzw-vo?si=GUVb6urvdscrGHxU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
25
+ </div >
26
+
23
27
You can also do request-reply style invocation, i.e. send message to request queue and receive another message from reply queue. For example:
24
28
25
29
![ Send Message and Also Receive] ( ../../screenshots/jms/send-message-and-also-receive.png )
Original file line number Diff line number Diff line change 15
15
{%- include head/favicon.html -%}
16
16
17
17
< link rel ="stylesheet " href ="/assets/css/tabs.css ">
18
+ < link rel ="stylesheet " href ="/assets/css/video-container.css ">
18
19
19
20
{%- include snippets/prepend-baseurl.html path='/assets/css/main.css' -%}
20
21
< link rel ="stylesheet " href ="{{ __return }} ">
Original file line number Diff line number Diff line change
1
+ /* Make the video responsive */
2
+
3
+ .video-container {
4
+ position : relative;
5
+ width : 100% ;
6
+ padding-bottom : 56.25% ;
7
+ height : 0 ;
8
+ }
9
+
10
+ .video-container iframe {
11
+ position : absolute;
12
+ top : 0 ;
13
+ left : 0 ;
14
+ width : 100% ;
15
+ height : 100% ;
16
+ }
You can’t perform that action at this time.
0 commit comments