![Alejandro Cabrera](/assets/img/avatar_default.png)
This patchset contributes a message controller for Marconi client. It implements simple property querying for messages, as well as the ability to reload these properties as needed (polling?) and delete a message. It also uses the assumed structure of the HTTPclient that will form the basis of the connection from the common libraries. six is used to boost py3k compat. This also introduces a directory structure for supporting multiple transports. Instead of having a 'controller' dir, now we have a 'transports/http' and 'transports/zmq'. Author: Alejandro Cabrera Implements: blueprint messages-management Change-Id: I9d4e7c28939cdb68b74690e5c56e69d58ac1559a
15 lines
584 B
Python
15 lines
584 B
Python
# Copyright (c) 2013 Rackspace, Inc.
|
|
#
|
|
# Licensed 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.
|