summaryrefslogtreecommitdiff
path: root/docs/Enums/SDLTextAndGraphicManagerError.html
blob: 4877dffc65990e061b909244007dcaf07cffbbde (plain)
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
<h1>SDLTextAndGraphicManagerError Enumeration Reference</h1>

<h3>Section Contents</h3>

<ul>
  <li><a href="#section-SDLTextAndGraphicManagerErrorPendingUpdateSuperseded">SDLTextAndGraphicManagerErrorPendingUpdateSuperseded</a></li>
  <li><a href="#section-SDLTextAndGraphicManagerErrorCurrentlyBatching">SDLTextAndGraphicManagerErrorCurrentlyBatching</a></li>
  <li><a href="#section-SDLTextAndGraphicManagerErrorNothingToUpdate">SDLTextAndGraphicManagerErrorNothingToUpdate</a></li>
</ul>

<h3>Overview</h3>

<p>Errors associated with the ScreenManager class</p>


<section class="section task-group-section">
  <h3 id="section-SDLTextAndGraphicManagerErrorPendingUpdateSuperseded">
      SDLTextAndGraphicManagerErrorPendingUpdateSuperseded
  </h3>
  
  <p>A pending update was superseded by a newer requested update. The old update will not be sent</p>

  
  
  <h4>Objective-C</h4>
  <pre class="highlight objective_c"><code><span class="n">SDLTextAndGraphicManagerErrorPendingUpdateSuperseded</span> <span class="o">=</span> <span class="o">-</span><span class="mi">1</span></code></pre>

  
  <h4>Swift</h4>
  <pre class="highlight swift"><code><span class="k">case</span> <span class="n">pendingUpdateSuperseded</span> <span class="o">=</span> <span class="o">-</span><span class="mi">1</span></code></pre>

  
  
  
  <h3 id="section-SDLTextAndGraphicManagerErrorCurrentlyBatching">
      SDLTextAndGraphicManagerErrorCurrentlyBatching
  </h3>
  
  <p>The manager is currently batching updates so the update will not yet be sent and the handler will not be called</p>

  
  
  <h4>Objective-C</h4>
  <pre class="highlight objective_c"><code><span class="n">SDLTextAndGraphicManagerErrorCurrentlyBatching</span> <span class="o">=</span> <span class="o">-</span><span class="mi">2</span></code></pre>

  
  <h4>Swift</h4>
  <pre class="highlight swift"><code><span class="k">case</span> <span class="n">currentlyBatching</span> <span class="o">=</span> <span class="o">-</span><span class="mi">2</span></code></pre>

  
  
  
  <h3 id="section-SDLTextAndGraphicManagerErrorNothingToUpdate">
      SDLTextAndGraphicManagerErrorNothingToUpdate
  </h3>
  
  <p>The manager could find nothing to update</p>

  
  
  <h4>Objective-C</h4>
  <pre class="highlight objective_c"><code><span class="n">SDLTextAndGraphicManagerErrorNothingToUpdate</span> <span class="o">=</span> <span class="o">-</span><span class="mi">3</span></code></pre>

  
  <h4>Swift</h4>
  <pre class="highlight swift"><code><span class="k">case</span> <span class="n">nothingToUpdate</span> <span class="o">=</span> <span class="o">-</span><span class="mi">3</span></code></pre>

  
  
  
</section>