Sha256: 130f87b0e2ff0e04f5a45d63f075f46049f8b8e02b3885e31efefa4c47963172

Contents?: true

Size: 796 Bytes

Versions: 2

Compression:

Stored size: 796 Bytes

Contents

# frozen_string_literal: true

module Grumlin
  class Step < AnonymousStep
    attr_reader :client

    def initialize(pool, name, *args, previous_step: nil)
      super(name, *args, previous_step: previous_step)
      @pool = pool
    end

    def next
      to_enum.next
    end

    def hasNext # rubocop:disable Naming/MethodName
      to_enum.peek
      true
    rescue StopIteration
      false
    end

    def to_enum
      @to_enum ||= toList.to_enum
    end

    def toList
      @pool.acquire do |client|
        client.write(bytecode)
      end
    end

    def iterate
      @pool.acquire do |client|
        client.write(bytecode(no_return: true))
      end
    end

    def step(step_name, args)
      self.class.new(@pool, step_name, *args, previous_step: self)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
grumlin-0.13.1 lib/grumlin/step.rb
grumlin-0.13.0 lib/grumlin/step.rb