All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pubnub.api.java.endpoints.Endpoint.kt Maven / Gradle / Ivy

package com.pubnub.api.java.endpoints

import com.pubnub.api.endpoints.remoteaction.ExtendedRemoteAction
import com.pubnub.api.v2.PNConfiguration

interface Endpoint : ExtendedRemoteAction {
    /**
     * Allows to override certain configuration options (see [com.pubnub.api.v2.PNConfigurationOverride.Builder]) for this request only.
     *
     *
     * [com.pubnub.api.java.v2.PNConfigurationOverride.from] should be used to obtain a `PNConfigurationOverride.Builder`.
     * Only options present in `PNConfigurationOverride.Builder` will be used for the override.
     *
     *
     * Example:
     * 
     * configOverride = PNConfigurationOverride.from(pubnub.configuration)
     * configOverride.userId(UserId("example"))
     * endpoint.overrideConfiguration(configOverride.build()).sync()
     
* * * @return Returns the same instance for convenience, so [Endpoint.sync] or [Endpoint.async] can be called next. */ fun overrideConfiguration(configuration: PNConfiguration): Endpoint }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy