Skip to content

Commit d8baca2

Browse files
committed
bump
1 parent ec2a811 commit d8baca2

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ REBAR_CONFIG ?= $(BASE_DIR)/rebar.config
66
GRISPFILES_DIR ?= $(BASE_DIR)/grisp/grisp_base/files
77
CACHE_DIR ?= $(HOME)/.cache/rebar3
88
COOKIE ?= MyCookie
9-
VERSION ?= 0.1.9
9+
VERSION ?= 0.1.10
1010
PDFDIR ?= $(BASE_DIR)/doc/internal
1111

1212
REBAR_APPEND ?= {extra_src_dirs, [\"$(GRISP_TEST_SRC_DIR)\"]}.

doc/achlys.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ <h3 class="typedecl"><a name="type-task_targets">task_targets()</a></h3>
3232
<h2><a name="index">Function Index</a></h2>
3333
<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#bane-1">bane/1</a></td><td>Returns the aggregates for the given variable
3434
as seen by the current node.</td></tr>
35+
<tr><td valign="top"><a href="#bane_all_preys-1">bane_all_preys/1</a></td><td>Returns the aggregates for the given variable
36+
as seen by the current node for all nodes.</td></tr>
3537
<tr><td valign="top"><a href="#bite-1">bite/1</a></td><td>Adds the given task in the replicated task set.</td></tr>
3638
<tr><td valign="top"><a href="#clusterize-0">clusterize/0</a></td><td>Attempts to discover and join other neighboring nodes.</td></tr>
3739
<tr><td valign="top"><a href="#contagion-0">contagion/0</a></td><td>Form Lasp cluster without attempting to ping neighbors beforehand.</td></tr>
@@ -55,6 +57,12 @@ <h3 class="function"><a name="bane-1">bane/1</a></h3>
5557
</div><p>Returns the aggregates for the given variable
5658
as seen by the current node.</p>
5759

60+
<h3 class="function"><a name="bane_all_preys-1">bane_all_preys/1</a></h3>
61+
<div class="spec">
62+
<p><tt>bane_all_preys(Data::atom()) -&gt; list()</tt><br></p>
63+
</div><p>Returns the aggregates for the given variable
64+
as seen by the current node for all nodes.</p>
65+
5866
<h3 class="function"><a name="bite-1">bite/1</a></h3>
5967
<div class="spec">
6068
<p><tt>bite(Task::<a href="achlys.html#type-task">achlys:task()</a>) -&gt; ok</tt><br></p>

doc/achlys_cleaner.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,18 @@ <h2><a name="description">Description</a></h2><p>The garbage collection worker.
3131

3232
Where <em>gc_interval</em> is set to 30 seconds
3333
<h2><a name="index">Function Index</a></h2>
34-
<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#start_link-0">start_link/0</a></td><td>
34+
<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#flush_table-1">flush_table/1</a></td><td>Delete all objects in a given ETS table.</td></tr>
35+
<tr><td valign="top"><a href="#start_link-0">start_link/0</a></td><td>
3536
Starts the server.</td></tr>
3637
</table>
3738

3839
<h2><a name="functions">Function Details</a></h2>
3940

41+
<h3 class="function"><a name="flush_table-1">flush_table/1</a></h3>
42+
<div class="spec">
43+
<p><tt>flush_table(Table::atom()) -&gt; ok</tt><br></p>
44+
</div><p>Delete all objects in a given ETS table.</p>
45+
4046
<h3 class="function"><a name="start_link-0">start_link/0</a></h3>
4147
<div class="spec">
4248
<p><tt>start_link() -&gt; {ok, Pid::pid()} | ignore | {error, Reason::term()}</tt><br></p>

src/achlys.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ application , achlys , [
22
{description , "A framework for applications using Lasp
33
on GRiSP embedded systems at the edge"} ,
4-
{vsn , "0.1.9"} ,
4+
{vsn , "0.1.10"} ,
55

66
{registered , [achlys
77
, achlys_app

src/achlys.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
-export([members/0]).
4040
-export([gc/0]).
4141
-export([flush/1]).
42-
-export([join/1]).
42+
-export([join_host/1]).
4343

4444
%%====================================================================
4545
%% Type definitions
@@ -255,5 +255,5 @@ flush(Name) ->
255255
, self()).
256256

257257
%% @private
258-
join(Host) ->
258+
join_host(Host) ->
259259
lasp_peer_service:join(Host).

0 commit comments

Comments
 (0)