Skip to main content

blob.eos()

Indicates whether the blob’s read/write pointer has reached the end of the data

Availability

Device + Agent

Returns

Integer — 1 if the pointer has reached the end of the blob, otherwise null

Description

This method returns 1 if the blob’s read/write pointer is at the end of the blob, or null if the pointer is located elsewhere.

The location of the pointer can be set using the seek() method, or read using the tell() method.

Example Code