Skip to content
#

streaming-api

Here are 88 public repositories matching this topic...

ArthurBugan
ArthurBugan commented Jun 5, 2017

I'm trying to upload an image but i see that the example code sugests:
// these files to upload. You can also just upload 1 image!
$media_files = [
'bird1.jpg', 'bird2.jpg', 'bird3.jpg'
];

// will hold the uploaded IDs
$media_ids = [];

foreach ($media_files as $file) {
// upload all media files
$reply = $cb->media_upload([
'media' => $file
]);
// and collect their IDs
$media_ids[

Take a tour of the new features in Java SE 8, the platform designed to support faster and easier Java development. Learn about Project Lambda, a new syntax to support lambda expressions in Java code; the new Stream API for processing collections and managing parallel processing; the DateTime API for representing, managing and calculating date and time values; and Nashorn, a new engine to better support the use of JavaScript code with the Java Virtual Machine.

  • Updated Jun 1, 2020
  • Java
aravindet
aravindet commented Nov 2, 2019

It's more useful, more succinct, and protects the user from having to deal with \0s and \uffffs

The change should happen in decorate.js

Instead of:

arr.pageInfo = {
  hasNext: false,
  hasPrev: true,
  start: '',
  end: 'foobaq\uffff'
}

we should have:

arr.prevRange = null;
arr.nextRange = { first: 10, after: 'foobar' };

The null prevRange ind

Improve this page

Add a description, image, and links to the streaming-api topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the streaming-api topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.