You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by mc...@apache.org on 2015/06/03 22:30:55 UTC

[18/34] qpid-proton git commit: PROTON-799: Added the Sender class to the Ruby engine APIs.

PROTON-799: Added the Sender class to the Ruby engine APIs.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/b4ac3d17
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/b4ac3d17
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/b4ac3d17

Branch: refs/heads/master
Commit: b4ac3d174024dcb0b7d162400d8988618e02cd76
Parents: b433dd4
Author: Darryl L. Pierce <mc...@gmail.com>
Authored: Tue Jan 20 09:17:14 2015 -0500
Committer: Darryl L. Pierce <mc...@gmail.com>
Committed: Wed Jun 3 16:29:23 2015 -0400

----------------------------------------------------------------------
 proton-c/bindings/ruby/lib/core/sender.rb | 76 ++++++++++++++++++++++++++
 proton-c/bindings/ruby/lib/qpid_proton.rb |  1 +
 2 files changed, 77 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/b4ac3d17/proton-c/bindings/ruby/lib/core/sender.rb
----------------------------------------------------------------------
diff --git a/proton-c/bindings/ruby/lib/core/sender.rb b/proton-c/bindings/ruby/lib/core/sender.rb
new file mode 100644
index 0000000..9ddcaa0
--- /dev/null
+++ b/proton-c/bindings/ruby/lib/core/sender.rb
@@ -0,0 +1,76 @@
+#--
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#++
+
+module Qpid::Proton
+
+  # The sending endpoint.
+  #
+  # @see Receiver
+  #
+  class Sender < Link
+
+    # @private
+    include Util::ErrorHandler
+
+    # @private
+    can_raise_error :stream, :error_class => Qpid::Proton::LinkError
+
+    # Signals the availability of deliveries.
+    #
+    # @param n [Fixnum] The number of deliveries potentially available.
+    #
+    def offered(n)
+      Cproton.pn_link_offered(@impl, n)
+    end
+
+    # Sends the specified data to the remote endpoint.
+    #
+    # @param object [Object] The content to send.
+    # @param tag [Object] The tag
+    #
+    # @return [Fixnum] The number of bytes sent.
+    #
+    def send(object, tag = nil)
+      if object.respond_to? :proton_send
+        object.proton_send(self, tag)
+      else
+        stream(object)
+      end
+    end
+
+    # Send the specified bytes as part of the current delivery.
+    #
+    # @param bytes [Array] The bytes to send.
+    #
+    # @return n [Fixnum] The number of bytes sent.
+    #
+    def stream(bytes)
+      Cproton.pn_link_send(@impl, bytes)
+    end
+
+    def delivery_tag
+      @tag_count ||= 0
+      result = @tag_count.succ
+      @tag_count = result
+      return "#{result}"
+    end
+
+  end
+
+end

http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/b4ac3d17/proton-c/bindings/ruby/lib/qpid_proton.rb
----------------------------------------------------------------------
diff --git a/proton-c/bindings/ruby/lib/qpid_proton.rb b/proton-c/bindings/ruby/lib/qpid_proton.rb
index 9b3becb..39ef351 100644
--- a/proton-c/bindings/ruby/lib/qpid_proton.rb
+++ b/proton-c/bindings/ruby/lib/qpid_proton.rb
@@ -60,6 +60,7 @@ require "core/terminus"
 require "core/disposition"
 require "core/delivery"
 require "core/link"
+require "core/sender"
 
 # Messenger API classes
 require "messenger/filters"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org