Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/rb/sig/lib/selenium/webdriver/common/socket_lock.rbs
1865 views
module Selenium
  module WebDriver
    class SocketLock
      @port: untyped

      @server: untyped

      @timeout: untyped

      def initialize: (untyped port, untyped timeout) -> void

      def locked: () { () -> untyped } -> untyped

      private

      def lock: () -> untyped?

      def current_time: () -> untyped

      def release: () -> untyped

      def can_lock?: () -> untyped

      def did_lock?: () -> untyped
    end
  end
end