Questions tagged as 'stream'

2
answers

Streaming data on Http in Javascript

Is there a way to send data about Http, but instead of all the information at once, send one part at a time? For example: I make an Http request for GET /produtos . This will return all my products (assuming I did not put a limit). If...
asked by 01.07.2014 / 20:17
0
answers

Communication between socket and socket stream

I made the following class: class Socket { private $socket; private $loop; private $enviarMensagem; function __construct(LoopInterface $loop, $enviarMensagem) { $this->loop = $loop; $this->enviarMensagem...
asked by 10.11.2017 / 18:03
0
answers

File recording from stream-webcam

I have a question regarding my stream code with getusermedia. I want to send to my Node.js server a recording of my webcam. My form receives a video that I can upload, but it would have a second function - record a webcam video and send it...
asked by 21.09.2016 / 21:26
0
answers

Is it possible to populate a tree list in reverse using stream?

The question is as follows My class public class Node{ private String name; private Node parent; private List<Node> children; public Node() { } public Node(String name) { this.name = name; }...
asked by 25.05.2016 / 14:23
0
answers

"Invalid class typecast" when loading stream from SQLite (delphi)

I'm trying to fetch an image I've already inserted into my SQlite database, however on the line ms:=query.CreateBlobStream(query.FieldByName('imagem'),TBlobStreamMode.bmRead); I have the error "Invalid class typecast" note: I'm using del...
asked by 20.01.2016 / 12:06
0
answers

Audio Stream (WebRadio)

Good afternoon. Sorry for my ignorance, but how do I create a web radio (quite roughly, just for study purposes)? My project is as follows: I have a site that plays the audio and whoever accesses the site hears this audio. I have to use...
asked by 04.05.2015 / 19:27
1
answer

Java Stream convert MapString, Obj to ListObj

I have this object filled: Map<String, List<LogLine>> logMap = new TreeMap<>(); And after making a filter, I'd like a flat list of it, but I can only create list list List<List<LogLine>> foo = logMap.ent...
asked by 20.12.2017 / 09:00
1
answer

Use stream on NodeJS?

I am doing an email application (HapiJS) and am looking for them through node-imap and parsing through of Mailparser , and for Mailparser to parse, email must be in the form of Stream, Buffer, or String. / p> How can I create a Stream in me...
asked by 28.08.2017 / 16:38
1
answer

Implementation using API-Streams and API-Lambda Java 8

Good People. Trying unsuccessfully to resolve a proposed exercise using the new functionality of the Java Streams and Lambda 8 APIs. In this exercise, you can only create and change signature methods in the Shopping Cart class. The idea is to...
asked by 09.05.2017 / 20:10
1
answer

String returning empty

I'm trying to get me to enter the .zip file, select a single file named mcmod.info and save it to a MemoryStream temp. I followed it as this link in StackOverflow, but when I read var ms = new MemoryStream() using a...
asked by 03.02.2016 / 14:58