| [8] | 1 | package com.gnstudio.nabiro.connectivity.amf.utils
|
|---|
| 2 | {
|
|---|
| 3 | /**
|
|---|
| 4 | *
|
|---|
| 5 | * GNstudio nabiro
|
|---|
| 6 | * =====================================================================
|
|---|
| 7 | * Copyright(c) 2009
|
|---|
| 8 | * http://www.gnstudio.com
|
|---|
| 9 | *
|
|---|
| 10 | *
|
|---|
| 11 | *
|
|---|
| 12 | * This file is part of the nabiro flash platform framework
|
|---|
| 13 | *
|
|---|
| 14 | *
|
|---|
| 15 | * nabiro is free software; you can redistribute it and/or modify
|
|---|
| 16 | * it under the terms of the GNU Lesser General Public License as published by
|
|---|
| 17 | * the Free Software Foundation; either version 3 of the License, or
|
|---|
| 18 | * at your option) any later version.
|
|---|
| 19 | *
|
|---|
| 20 | * nabiro is distributed in the hope that it will be useful,
|
|---|
| 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 23 | * GNU General Public License for more details.
|
|---|
| 24 | *
|
|---|
| 25 | * You should have received a copy of the GNU Lesser General Public License
|
|---|
| 26 | * along with Intelligere SCS; if not, write to the Free Software
|
|---|
| 27 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|---|
| 28 | * =====================================================================
|
|---|
| 29 | *
|
|---|
| 30 | *
|
|---|
| 31 | *
|
|---|
| 32 | * @package nabiro
|
|---|
| 33 | *
|
|---|
| 34 | * @version 0.9
|
|---|
| [30] | 35 | * @idea maker Giorgio Natili [ g.natili@gnstudio.com ]
|
|---|
| 36 | * @author Giorgio Natili [ g.natili@gnstudio.com ]
|
|---|
| [58] | 37 | *
|
|---|
| 38 | *
|
|---|
| [8] | 39 | */
|
|---|
| 40 |
|
|---|
| 41 | import com.gnstudio.nabiro.connectivity.amf.remote.IRemoteMethod;
|
|---|
| 42 | import com.gnstudio.nabiro.connectivity.amf.remote.RemoteMethod;
|
|---|
| 43 |
|
|---|
| 44 | import mx.rpc.AbstractOperation;
|
|---|
| 45 |
|
|---|
| 46 | public class MethodsQueueElement{
|
|---|
| 47 |
|
|---|
| 48 | private var _remoteMethod:IRemoteMethod;
|
|---|
| 49 | private var _abstractOperation:AbstractOperation;
|
|---|
| 50 |
|
|---|
| 51 | public function MethodsQueueElement(method:IRemoteMethod, operation:AbstractOperation){
|
|---|
| 52 |
|
|---|
| 53 | _remoteMethod = method;
|
|---|
| 54 | _abstractOperation = operation;
|
|---|
| 55 |
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | public function get remoteMethod():IRemoteMethod{
|
|---|
| 59 |
|
|---|
| 60 | return _remoteMethod;
|
|---|
| 61 |
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | public function set remoteMethod(value:IRemoteMethod):void{
|
|---|
| 65 |
|
|---|
| 66 | _remoteMethod = value;
|
|---|
| 67 |
|
|---|
| 68 | }
|
|---|
| 69 |
|
|---|
| 70 | public function get abstractOperation():AbstractOperation{
|
|---|
| 71 |
|
|---|
| 72 | return _abstractOperation;
|
|---|
| 73 |
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | public function set abstractOperation(value:AbstractOperation):void{
|
|---|
| 77 |
|
|---|
| 78 | _abstractOperation = value;
|
|---|
| 79 |
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | }
|
|---|
| 83 | } |
|---|