Sha256: 285598a8e7053d55242bc199d7667fe23da00d84397481c3f04d9bbd8756d3ee

Contents?: true

Size: 908 Bytes

Versions: 1

Compression:

Stored size: 908 Bytes

Contents

module ApnServer
  
  class Server
    attr_accessor :client, :bind_address, :port
    
    def initialize(pem, bind_address = '0.0.0.0', port = 22195)
      @queue = EM::Queue.new
      @client = ApnServer::Client.new(pem)
      @bind_address, @port = bind_address, port
    end
    
    def start!
      EventMachine::run do
        $logger.info "Starting APN Server on #{bind_address}:#{port}"
        
        EM.start_server(bind_address, port, ApnServer::ServerConnection) do |s|
          s.queue = @queue
        end 
         
        EventMachine::PeriodicTimer.new(1) do
          unless @queue.empty?
            size = @queue.size
            size.times do 
              @queue.pop do |notification|
                @client.connect! unless @client.connected?
                @client.write(notification)
              end
            end
          end
        end
      end   
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bpoweski-apnserver-0.0.14 lib/apnserver/server.rb