{"id":16944898,"url":"https://github.com/drbrain/net-http-pipeline","last_synced_at":"2025-03-15T14:30:39.332Z","repository":{"id":56885354,"uuid":"1147970","full_name":"drbrain/net-http-pipeline","owner":"drbrain","description":"An HTTP/1.1 pipelining implementation atop Net::HTTP","archived":false,"fork":false,"pushed_at":"2017-06-21T12:38:40.000Z","size":129,"stargazers_count":42,"open_issues_count":0,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-02-27T02:54:11.306Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://seattlerb.rubyforge.org/net-http-pipeline","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/drbrain.png","metadata":{"files":{"readme":"README.txt","changelog":"History.txt","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-12-07T22:06:56.000Z","updated_at":"2022-07-26T16:13:37.000Z","dependencies_parsed_at":"2022-08-21T00:20:33.996Z","dependency_job_id":null,"html_url":"https://github.com/drbrain/net-http-pipeline","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbrain%2Fnet-http-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbrain%2Fnet-http-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbrain%2Fnet-http-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbrain%2Fnet-http-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drbrain","download_url":"https://codeload.github.com/drbrain/net-http-pipeline/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243742593,"owners_count":20340666,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T21:19:21.813Z","updated_at":"2025-03-15T14:30:38.957Z","avatar_url":"https://github.com/drbrain.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"= net-http-pipeline\n\n* http://docs.seattlerb.org/net-http-pipeline\n* http://github.com/drbrain/net-http-pipeline\n\n== DESCRIPTION:\n\nAn HTTP/1.1 pipelining implementation atop Net::HTTP.  A pipelined connection\nsends multiple requests to the HTTP server without waiting for the responses.\nThe server will respond in-order.\n\n== FEATURES/PROBLEMS:\n\n* Provides HTTP/1.1 pipelining\n\n== SYNOPSIS:\n\n  require 'net/http/pipeline'\n\n  Net::HTTP.start 'example' do |http|\n    req1 = Net::HTTP::Get.new '/?response_body=a'\n    req2 = Net::HTTP::Get.new '/?response_body=b'\n    req3 = Net::HTTP::Get.new '/?response_body=c'\n\n    http.pipeline [req1, req2, req3] do |res|\n      puts res.code\n      puts res.body[0..60].inspect\n      puts\n    end\n  end\n\nSince pipelined requests must be return in submission order the responses\nwill come in the same order as submission.  If http://example/ places the\n+response_body+ parameter in the body of the response this will print \"a\" then\n\"b\" then \"c\".\n\n== INSTALL:\n\n  gem install net-http-pipeline\n\n== LICENSE:\n\n(The MIT License)\n\nCopyright (c) 2010 Eric Hodel\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrbrain%2Fnet-http-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrbrain%2Fnet-http-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrbrain%2Fnet-http-pipeline/lists"}