Deployed ce698b4
with MkDocs version: 0.17.2
This commit is contained in:
parent
7cf67acff9
commit
8551991e20
|
@ -159,14 +159,14 @@ try {
|
||||||
<h2 id="collectorextractor-pattern-for-lists">Collector/Extractor pattern for lists</h2>
|
<h2 id="collectorextractor-pattern-for-lists">Collector/Extractor pattern for lists</h2>
|
||||||
<p>Sometimes information can not be represented as a structure, but as a list. In NewPipe an item of a list is called
|
<p>Sometimes information can not be represented as a structure, but as a list. In NewPipe an item of a list is called
|
||||||
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>. In order
|
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItem.html">InfoItem</a>. In order
|
||||||
to get such items a <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemCollector.html">InfoItemsCollector</a>
|
to get such items a <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html">InfoItemsCollector</a>
|
||||||
is used. For each item that should be extracted a new Extractor will be given to the InfoItemCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemCollector.html#commit-E-">commit()</a>.</p>
|
is used. For each item that should be extracted a new Extractor will be given to the InfoItemCollector via <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/InfoItemsCollector.html#commit-E-">commit()</a>.</p>
|
||||||
<p><img alt="InfoItemsCollector_objectdiagram.svg" src="../img/InfoItemsCollector_objectdiagram.svg" /></p>
|
<p><img alt="InfoItemsCollector_objectdiagram.svg" src="../img/InfoItemsCollector_objectdiagram.svg" /></p>
|
||||||
<p>When a streaming site shows a list it usually offers some additional information about that list, like it's title, a thumbnail
|
<p>When a streaming site shows a list it usually offers some additional information about that list, like it's title, a thumbnail
|
||||||
or its creator. Such info can be called <strong>list header</strong>.</p>
|
or its creator. Such info can be called <strong>list header</strong>.</p>
|
||||||
<p>Also if you open a list in a web browser the website usually does not load the whole list, but only a part
|
<p>Also if you open a list in a web browser the website usually does not load the whole list, but only a part
|
||||||
of it. In order to get more you may have to click on a next page button, or scroll down. This is why a list in
|
of it. In order to get more you may have to click on a next page button, or scroll down. This is why a list in
|
||||||
NewPipe is coped down into <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.NextItemsResult.html">InfoItemPage</a>s. Each Page has its own URL, and needs to be extracted separately.</p>
|
NewPipe is coped down into <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.InfoItemPage.html">InfoItemPage</a>s. Each Page has its own URL, and needs to be extracted separately.</p>
|
||||||
<p>List header information and extracting multiple pages of an InfoItem list can be handled by a
|
<p>List header information and extracting multiple pages of an InfoItem list can be handled by a
|
||||||
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a></p>
|
<a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/ListExtractor.html">ListExtractor</a></p>
|
||||||
|
|
||||||
|
|
|
@ -161,5 +161,5 @@ This however is not the <a href="https://teamnewpipe.github.io/NewPipeExtractor/
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
MkDocs version : 0.17.2
|
MkDocs version : 0.17.2
|
||||||
Build Date UTC : 2018-02-24 21:17:48
|
Build Date UTC : 2018-02-24 22:20:22
|
||||||
-->
|
-->
|
||||||
|
|
Loading…
Reference in New Issue