Sha256: 43b7ddf1cef69f62a37f3aa26a513528b7d04e57e41b898be197697830131cbb

Contents?: true

Size: 900 Bytes

Versions: 1

Compression:

Stored size: 900 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
        puts "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.17 lib/apnserver/server.rb