class Radiator::Bridge

Public Instance Methods

api_name() click to toggle source
# File lib/radiator/bridge.rb, line 28
def api_name
  :bridge
end
healthy?(_) click to toggle source
# File lib/radiator/bridge.rb, line 32
def healthy?(_); true; end
method_names() click to toggle source
# File lib/radiator/bridge.rb, line 3
def method_names
  @method_names ||= [
    :normalize_post,
    :get_post_header,
    :get_discussion,
    :get_post,
    :get_account_posts,
    :get_ranked_posts,
    :get_profile,
    :get_trending_topics,
    :get_relationship_between_accounts,
    :post_notifications,
    :account_notifications,
    :unread_notifications,
    :get_payout_stats,
    :get_community,
    :get_community_context,
    :list_communities,
    :list_pop_communities,
    :list_community_roles,
    :list_subscribers,
    :list_all_subscriptions
  ].freeze
end