Represents an update to a container subject.
The ContainerEvent
will be provided on a onContainerUpdate
callback to a caplin.streamlink.SubscriptionListener.
Attributes | Name and Description |
---|---|
|
caplin.streamlink.ContainerEvent()
|
Attributes | Name and Description |
---|---|
|
int
getSize()
Gets the size of the container. |
|
int
getWindowEnd()
Gets the index of the end of the container window. |
|
int
getWindowStart()
Gets the index of the start of the window. |
|
void
updateModel(caplin.streamlink.ContainerModel containerModel)
Update your implementation of caplin.streamlink.ContainerModel with the contents of this ContainerEvent. |
►
caplin.streamlink.ContainerEvent()
►
int
getSize()
Gets the size of the container.
The value returned here is the true size of the container, which may be larger than the size of the container window that you have subscribed to.
The value returned here is useful for sizing the scroll bars of a data view showing the elements within a container.
►
int
getWindowEnd()
Gets the index of the end of the container window.
►
int
getWindowStart()
Gets the index of the start of the window.
►
void
updateModel(caplin.streamlink.ContainerModel containerModel)
Update your implementation of caplin.streamlink.ContainerModel with the contents of this ContainerEvent.
caplin.streamlink.ContainerModel | containerModel | Your implementation of caplin.streamlink.ContainerModel that should be updated with the contents of this ContainerEvent. |