diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pl/nsiinputstream/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pl/nsiinputstream/index.html')
-rw-r--r-- | files/pl/nsiinputstream/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/pl/nsiinputstream/index.html b/files/pl/nsiinputstream/index.html new file mode 100644 index 0000000000..4096e7b899 --- /dev/null +++ b/files/pl/nsiinputstream/index.html @@ -0,0 +1,41 @@ +--- +title: nsIInputStream +slug: nsIInputStream +tags: + - Dokumentacja_API_XPCOM + - Interfejsy + - 'Interfejsy:Skryptowalne' + - 'Interfejsy:Zamrożone' + - Wszystkie_kategorie + - XPCOM +--- +<p> +« <a href="/pl/docs/Dokumentacja_API_XPCOM">Dokumentacja API XPCOM</a> +</p> +<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3> +<p>Interfejs <code>nsIInputStream</code> reprezentuje źródło danych nadających się do odczytu. +</p> +<pre> #include "nsIInputStream.h" + + [scriptable, uuid=(fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a)] + interface nsIInputStream : nsISupports { ... }; +</pre> +<h3 id="Metody" name="Metody">Metody</h3> +<dl><dt> <code><a href="pl/NsIInputStream/close">close</a></code> +</dt><dd> Metoda zamyka ciąg wejściowy. +</dd></dl> +<dl><dt> <code><a href="pl/NsIInputStream/available">available</a></code> +</dt><dd> Metoda zwraca ilość bajtów aktualnie możliwych do odczytania z ciągu. +</dd></dl> +<dl><dt> <code><a href="pl/NsIInputStream/read">read</a></code> +</dt><dd> Metoda kopiuje dane z ciągu do bufora. +</dd></dl> +<dl><dt> <code><a href="pl/NsIInputStream/readSegments">readSegments</a></code> +</dt><dd> Metoda dostarcza bezpośredniego dostępu do wewnętrznego bufora ciągu. +</dd></dl> +<dl><dt> <code><a href="pl/NsIInputStream/isNonBlocking">isNonBlocking</a></code> +</dt><dd> Metoda zwraca wartość <code>true</code> jeśli ciąg nie jest blokujący. +</dd></dl> +<h3 id="Historia" name="Historia">Historia</h3> +<p>Ten interfejs został zamrożony dla Mozilli 1.0. Zobacz <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=124465" title="FIXED: [meta] freeze specific necko APIs for mozilla 1.0">błąd 124465</a>, aby poznać szczegóły. +</p> |