コード例 #1
0
 public System.IAsyncResult Begincreate(GlobalLBTopologyTopologyRecord [] records,long [] weights,long [] orders, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     records,
     weights,
     orders}, callback, asyncState);
 }
コード例 #2
0
 public System.IAsyncResult Beginset_description(GlobalLBTopologyTopologyRecord [] records,string [] descriptions, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("set_description", new object[] {
     records,
     descriptions}, callback, asyncState);
 }
コード例 #3
0
 public System.IAsyncResult Beginget_weight(GlobalLBTopologyTopologyRecord [] records, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("get_weight", new object[] {
     records}, callback, asyncState);
 }
コード例 #4
0
 public System.IAsyncResult Begindelete_topology_record(GlobalLBTopologyTopologyRecord [] records, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("delete_topology_record", new object[] {
     records}, callback, asyncState);
 }
コード例 #5
0
        public void set_weight(
		GlobalLBTopologyTopologyRecord [] records,
		long [] weights
	)
        {
            this.Invoke("set_weight", new object [] {
                records,
                weights});
        }
コード例 #6
0
        public void set_order(
		GlobalLBTopologyTopologyRecord [] records,
		long [] orders
	)
        {
            this.Invoke("set_order", new object [] {
                records,
                orders});
        }
コード例 #7
0
        public void set_description(
		GlobalLBTopologyTopologyRecord [] records,
		string [] descriptions
	)
        {
            this.Invoke("set_description", new object [] {
                records,
                descriptions});
        }
コード例 #8
0
        public long[] get_weight(
		GlobalLBTopologyTopologyRecord [] records
	)
        {
            object [] results = this.Invoke("get_weight", new object [] {
                records});
            return ((long [])(results[0]));
        }
コード例 #9
0
        public string[] get_description(
		GlobalLBTopologyTopologyRecord [] records
	)
        {
            object [] results = this.Invoke("get_description", new object [] {
                records});
            return ((string [])(results[0]));
        }
コード例 #10
0
        public void delete_topology_record(
		GlobalLBTopologyTopologyRecord [] records
	)
        {
            this.Invoke("delete_topology_record", new object [] {
                records});
        }
コード例 #11
0
        public void create(
		GlobalLBTopologyTopologyRecord [] records,
		long [] weights,
		long [] orders
	)
        {
            this.Invoke("create", new object [] {
                records,
                weights,
                orders});
        }