GoLang SAMConnection::unsubscribe

request it (263)
GoLang replacement for PHP's SAMConnection::unsubscribe [edit | history]



Do you know a GoLang replacement for PHP's SAMConnection::unsubscribe? Write it!

PHP SAMConnection::unsubscribe

PHP original manual for SAMConnection::unsubscribe [ show | php.net ]

SAMConnection::unsubscribe

(PECL sam >= 0.1.0)

SAMConnection::unsubscribe Cancel a subscription to a specified topic

Description

bool SAMConnection::unsubscribe ( string $subscriptionId [, string $targetTopic ] )

The "unsubscribe" method is used to delete an existing subscription to a specified topic.

Parameters

subscriptionId

The identifier of an existing subscription as returned by a call to the subscribe method.

Return Values

This method returns FALSE if an error occurs.

Examples

Example #1 Delete a subscription

<?php
if (!$conn->unsubscribe($subid)) {
    
// The unsubscribe failed!
    
echo "Unsubscribe failed ($conn->errno$conn->error";
}
?>