Skip to content

Commit 325b5be

Browse files
committed
Update docs
1 parent 166a13b commit 325b5be

File tree

5 files changed

+13
-17
lines changed

5 files changed

+13
-17
lines changed

docs-src/queuing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ It is often useful to hit a URL before or after the command runs:
154154

155155
```c#
156156
Enqueue.Command(new Command())
157-
.EveryFiveMinutes()
158157
.PingBefore("http://example.com")
159158
.PingAfter("http://example.com");
160159
```
@@ -166,7 +165,6 @@ It also allows these life cycle methods to send the command's text output to fil
166165

167166
```c#
168167
Enqueue.Command(new Command)
169-
.EveryFiveMinutes()
170168
.WriteOutputTo("/some/path")
171169
.AppendOutputTo("/some/path")
172170
.EmailOutputTo("example@inengine.net");

docs/queuing/index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,6 @@ <h3 id="with-life-cycle-methods">With Life Cycle Methods<a class="headerlink" hr
918918
It has the rest.</p>
919919
<p>It is often useful to hit a URL before or after the command runs:</p>
920920
<div class="codehilite"><pre><span></span><span class="n">Enqueue</span><span class="p">.</span><span class="n">Command</span><span class="p">(</span><span class="k">new</span> <span class="n">Command</span><span class="p">())</span>
921-
<span class="p">.</span><span class="n">EveryFiveMinutes</span><span class="p">()</span>
922921
<span class="p">.</span><span class="n">PingBefore</span><span class="p">(</span><span class="s">&quot;http://example.com&quot;</span><span class="p">)</span>
923922
<span class="p">.</span><span class="n">PingAfter</span><span class="p">(</span><span class="s">&quot;http://example.com&quot;</span><span class="p">);</span>
924923
</pre></div>
@@ -928,7 +927,6 @@ <h3 id="with-life-cycle-methods">With Life Cycle Methods<a class="headerlink" hr
928927
This class is more than just a wrapper for <strong>Console.WriteLine</strong>.</p>
929928
<p>It also allows these life cycle methods to send the command's text output to files or an email: </p>
930929
<div class="codehilite"><pre><span></span><span class="n">Enqueue</span><span class="p">.</span><span class="n">Command</span><span class="p">(</span><span class="k">new</span> <span class="n">Command</span><span class="p">)</span>
931-
<span class="p">.</span><span class="n">EveryFiveMinutes</span><span class="p">()</span>
932930
<span class="p">.</span><span class="n">WriteOutputTo</span><span class="p">(</span><span class="s">&quot;/some/path&quot;</span><span class="p">)</span>
933931
<span class="p">.</span><span class="n">AppendOutputTo</span><span class="p">(</span><span class="s">&quot;/some/path&quot;</span><span class="p">)</span>
934932
<span class="p">.</span><span class="n">EmailOutputTo</span><span class="p">(</span><span class="s">&quot;example@inengine.net&quot;</span><span class="p">);</span>

0 commit comments

Comments
 (0)