class Spotify::Session

Session pointers are special in that they are created once, never increases or decreases in reference count and should never be released.

See the {ManagedPointer} for documentation.

Public Class Methods

new(*) click to toggle source

After initialization sets autorelease to false.

@param (see ManagedPointer)

Calls superclass method
# File lib/spotify/types/session.rb, line 15
def initialize(*)
  super
  self.autorelease = false
end