-
Notifications
You must be signed in to change notification settings - Fork 0
/
concurrency-utilities-in-java8.html
111 lines (84 loc) · 3.36 KB
/
concurrency-utilities-in-java8.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Concurrency Utilities in Java 8</title>
<link rel="stylesheet" href="static/css/reveal.min.css">
<link rel="stylesheet" href="static/css/theme/default.css" id="theme">
<link rel="stylesheet" href="static/lib/css/zenburn.css">
<link rel="stylesheet" href="static/revealjs.css" type="text/css" />
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write('<link rel="stylesheet" href="static/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="static/lib/js/html5shiv.js"></script>
<![endif]-->
<style type="text/css">
.reveal code {
font-size: 120%;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<div class="section">
<h1>Concurrency Utilities in Java 8</h1>
<section data-markdown="concurrency-utilities-in-java8.md"
data-separator="^\n\n\n"
data-vertical="^\n\n"
data-notes="^Note:"
data-charset="UTF-8">
</section>
</div>
</div>
</div>
<script src="static/js/jquery.min.js"></script>
<script src="static/lib/js/head.min.js"></script>
<script src="static/js/reveal.js"></script>
<script>
// change DOM for reveal.js
$("div.section h1").remove();
var content = $("div.section").html();
$("div.section").remove();
$("div.slides").html(content);
Reveal.initialize({
width: 960,
height: 700,
margin: 0.1,
minScale: 0.2,
maxScale: 1.0,
controls: true,
progress: true,
history: true,
center: true,
keyboard : true,
overview: true,
touch: true,
loop: false,
rtl: false,
fragments: true,
autoSlide: 0,
mouseWheel: false,
rollingLinks: true,
previewLinks: false,
transitionSpeed: "default",
backgroundTransition: "default",
theme: Reveal.getQueryHash().theme || "solarized", // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || "default", // default/cube/page/concave/zoom/linear/fade/none
dependencies: [
{ src: 'static/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'static/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'static/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'static/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'static/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'static/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>