/doc/core/z_dropbox.html
http://github.com/zotonic/zotonic · HTML · 81 lines · 68 code · 13 blank · 0 comment · 0 complexity · c3c5a96387c4af0e4c859efc7ff6975d MD5 · raw file
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>Module z_dropbox</title>
- <link rel="stylesheet" type="text/css" href="stylesheet.css" title="EDoc">
- </head>
- <body bgcolor="white">
- <div class="navbar"><a name="#navbar_top"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
- <hr>
- <h1>Module z_dropbox</h1>
- <ul class="index"><li><a href="#description">Description</a></li><li><a href="#index">Function Index</a></li><li><a href="#functions">Function Details</a></li></ul>Simple dropbox handler, monitors a directory and signals new files.
- <p>Copyright 2009 Marc Worrell
- </p>
- <p><b>Behaviours:</b> <a href="gen_server.html"><tt>gen_server</tt></a>.</p>
- <p><b>Authors:</b> Marc Worrell (<a href="mailto:marc@worrell.nl"><tt>marc@worrell.nl</tt></a>).</p>
- <h2><a name="description">Description</a></h2>Simple dropbox handler, monitors a directory and signals new files.
- <h2><a name="index">Function Index</a></h2>
- <table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#code_change-3">code_change/3</a></td><td>Convert process state when code is changed.</td></tr>
- <tr><td valign="top"><a href="#handle_call-3">handle_call/3</a></td><td>Trap unknown calls.</td></tr>
- <tr><td valign="top"><a href="#handle_cast-2">handle_cast/2</a></td><td>Scan the dropbox, broadcast found files.</td></tr>
- <tr><td valign="top"><a href="#handle_info-2">handle_info/2</a></td><td>Handling all non call/cast messages.</td></tr>
- <tr><td valign="top"><a href="#init-1">init/1</a></td><td>Initiates the server.</td></tr>
- <tr><td valign="top"><a href="#scan-1">scan/1</a></td><td>Perform a scan of the dropbox, periodically called by a timer.</td></tr>
- <tr><td valign="top"><a href="#start_link-1">start_link/1</a></td><td>Starts the dropbox server.</td></tr>
- <tr><td valign="top"><a href="#terminate-2">terminate/2</a></td><td>This function is called by a gen_server when it is about to
- terminate.</td></tr>
- </table>
- <h2><a name="functions">Function Details</a></h2>
- <h3 class="function"><a name="code_change-3">code_change/3</a></h3>
- <div class="spec">
- <p><tt>code_change(OldVsn, State, Extra) -> {ok, NewState}</tt></p>
- </div><p>Convert process state when code is changed</p>
- <h3 class="function"><a name="handle_call-3">handle_call/3</a></h3>
- <div class="spec">
- <p><tt>handle_call(Message::Request, From, State) -> {reply, Reply, State} | {reply, Reply, State, Timeout} | {noreply, State} | {noreply, State, Timeout} | {stop, Reason, Reply, State} | {stop, Reason, State}</tt></p>
- </div><p>Trap unknown calls</p>
- <h3 class="function"><a name="handle_cast-2">handle_cast/2</a></h3>
- <div class="spec">
- <p><tt>handle_cast(Message::Msg, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}</tt></p>
- </div><p>Scan the dropbox, broadcast found files.</p>
- <h3 class="function"><a name="handle_info-2">handle_info/2</a></h3>
- <div class="spec">
- <p><tt>handle_info(Info, State) -> {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State}</tt></p>
- </div><p>Handling all non call/cast messages</p>
- <h3 class="function"><a name="init-1">init/1</a></h3>
- <div class="spec">
- <p><tt>init(SiteProps) -> {ok, State} | {ok, State, Timeout} | ignore | {stop, Reason}</tt></p>
- </div><p>Initiates the server. Options are: dropbox_dir, processing_dir, unhandled_dir, interval, max_age and min_age</p>
- <h3 class="function"><a name="scan-1">scan/1</a></h3>
- <div class="spec">
- <p><tt>scan(Context::<a href="#type-context">context()</a>) -> <a href="#type-void">void()</a></tt></p>
- </div><p>Perform a scan of the dropbox, periodically called by a timer.</p>
- <h3 class="function"><a name="start_link-1">start_link/1</a></h3>
- <div class="spec">
- <p><tt>start_link(SiteProps::SiteArgs) -> {ok, Pid} | ignore | {error, Error}</tt></p>
- </div><p>Starts the dropbox server</p>
- <h3 class="function"><a name="terminate-2">terminate/2</a></h3>
- <div class="spec">
- <p><tt>terminate(Reason, State) -> <a href="#type-void">void()</a></tt></p>
- </div><p>This function is called by a gen_server when it is about to
- terminate. It should be the opposite of Module:init/1 and do any necessary
- cleaning up. When it returns, the gen_server terminates with Reason.
- The return value is ignored.</p>
- <hr>
- <div class="navbar"><a name="#navbar_bottom"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
- <p><i>Generated by EDoc, Oct 13 2011, 14:45:56.</i></p>
- </body>
- </html>