GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

IBlazeFollowEntitiesManager

Manager for follow entities state and operations. It maintains the current set of follow entities and notifies a delegate of user actions.


Methods

setFollowEntities

Sets the entire set of follow entities, replacing any existing ones.

  • followedEntities - The new set of follow entities to set.
fun setFollowedEntities(followedEntities: Set<BlazeFollowEntity>)

getFollowedEntities

Retrieves the current set of follow entities.

  • Returns the current set of follow entities.
fun getFollowedEntities(): Set<BlazeFollowEntity>

insertFollowedEntities

Inserts new follow entities into the current set.

  • followedEntities - The set of follow entities to insert.
fun insertFollowedEntities(followedEntities: Set<BlazeFollowEntity>)

removeFollowedEntities

Removes specified follow entities from the current set.

  • followedEntities - The set of follow entities to remove.
fun removeFollowedEntities(followedEntities: Set<BlazeFollowEntity>)

Did this page help you?