-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
297 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Paratize.TaskOptions</title> | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" /> | ||
<link rel="stylesheet" href="css/elixir.css" type="text/css" media="screen" charset="utf-8" /> | ||
<script type="text/javascript" charset="utf-8"> | ||
relpath = ''; | ||
if (relpath != '') relpath += '/'; | ||
</script> | ||
|
||
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script> | ||
<script type="text/javascript" charset="utf-8" src="js/app.js"></script> | ||
<script type="text/javascript" charset="utf-8" src="js/highlight.pack.js"></script> | ||
<script type="text/javascript" charset="utf-8"> | ||
hljs.initHighlightingOnLoad(); | ||
hljs.configure({languages: []}); //disable autodetect | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<script type="text/javascript" charset="utf-8"> | ||
if (window.top.frames.main) document.body.className = 'frames'; | ||
</script> | ||
|
||
<section id="content"> | ||
<div class="breadcrumbs">Paratize v1.0.0 → <a href="overview.html">Overview</a> → <a href="Paratize.html">Paratize</a> → <a href="Paratize.TaskOptions.html">TaskOptions</a></div> | ||
<h1> | ||
Paratize.TaskOptions | ||
|
||
</h1> | ||
|
||
<ul class="summary_links"> | ||
|
||
<li><a href="#summary">Summary</a></li> | ||
|
||
|
||
|
||
<li><a href="#functions_details">Functions</a></li> | ||
|
||
|
||
|
||
</ul> | ||
|
||
|
||
<section id="moduledoc" class="docstring"> | ||
<p>Struct holding the configurations for executing the workload in parallel.</p> | ||
|
||
</section> | ||
|
||
|
||
|
||
<a href="https://github.com/seantanly/elixir-paratize/blob/v1.0.0/lib/paratize/task_options.ex#L1" class="view_source">Source</a> | ||
|
||
|
||
|
||
<h2 id="summary">Summary<span class="detail_header_links"><a class="to_top_link" href="#content" title="To the top of the page">↑</a></span></h2> | ||
<table class="summary"> | ||
<tr> | ||
<td class="summary_signature"><a href="#__struct__/0">__struct__()</a></td> | ||
|
||
<td class="summary_synopsis"><ul> | ||
<li>mode - :chunk | :pool (default :pool). | ||
</li> | ||
<li>size - number of workers, default: the number of CPU cores. | ||
</li> | ||
<li>timeout - timeout in ms, integer, default: 5000, exit(:timeout,…) if no result is return by any of the workers within the period | ||
</li> | ||
</ul> | ||
</td> | ||
|
||
</tr> | ||
|
||
</table> | ||
|
||
|
||
|
||
|
||
|
||
<section id="functions_details" class="details_list"> | ||
<h2>Functions</h2> | ||
<section class="detail"> | ||
<div class="detail_header" id="__struct__/0"> | ||
<span class="signature"><strong>__struct__()</strong></span> | ||
<div class="detail_header_links"> | ||
<span class="detail_type">(function)</span> | ||
<a href="#__struct__/0" class="detail_link" title="Link to this function">#</a> | ||
<a class="to_top_link" href="#content" title="To the top of the page">↑</a> | ||
</div> | ||
</div> | ||
|
||
<p>Specs:</p> | ||
<ul class="spec"> | ||
|
||
<li>__struct__ :: %Paratize.TaskOptions{mode: term, size: term, timeout: term}</li> | ||
|
||
</ul> | ||
|
||
<section class="docstring"> | ||
<ul> | ||
<li>mode - :chunk | :pool (default :pool). | ||
</li> | ||
<li>size - number of workers, default: the number of CPU cores. | ||
</li> | ||
<li>timeout - timeout in ms, integer, default: 5000, exit(:timeout,…) if no result is return by any of the workers within the period. | ||
</li> | ||
</ul> | ||
|
||
</section> | ||
|
||
<a href="https://github.com/seantanly/elixir-paratize/blob/v1.0.0/lib/paratize/task_options.ex#L11" class="view_source">Source</a> | ||
|
||
</section> | ||
|
||
</section> | ||
|
||
|
||
|
||
|
||
|
||
</section> | ||
</body> | ||
</html> |
Oops, something went wrong.