aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
diff options
context:
space:
mode:
authorMelanie2010-05-21 03:51:58 +0100
committerMelanie2010-05-21 03:51:58 +0100
commita92780fe5f31a38b2f00459ef00ca28127a60dcf (patch)
treef89850a27564abd01f1b3aaf72aa24001e165a26 /OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
parentRefactor scene presence list for lockless iteration. Lock contention will now... (diff)
parentCleaned up MySql migrations a bit more, got rid of all old-form migration fil... (diff)
downloadopensim-SC_OLD-a92780fe5f31a38b2f00459ef00ca28127a60dcf.zip
opensim-SC_OLD-a92780fe5f31a38b2f00459ef00ca28127a60dcf.tar.gz
opensim-SC_OLD-a92780fe5f31a38b2f00459ef00ca28127a60dcf.tar.bz2
opensim-SC_OLD-a92780fe5f31a38b2f00459ef00ca28127a60dcf.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs')
-rw-r--r--OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs20
1 files changed, 5 insertions, 15 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
index 7c8a979..181606b 100644
--- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
+++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs
@@ -593,16 +593,6 @@ namespace OpenSim.Client.Sirikata.ClientStack
593 throw new System.NotImplementedException(); 593 throw new System.NotImplementedException();
594 } 594 }
595 595
596 public void SendAvatarData(SendAvatarData data)
597 {
598 throw new System.NotImplementedException();
599 }
600
601 public void SendAvatarTerseUpdate(SendAvatarTerseData data)
602 {
603 throw new System.NotImplementedException();
604 }
605
606 public void SendCoarseLocationUpdate(List<UUID> users, List<Vector3> CoarseLocations) 596 public void SendCoarseLocationUpdate(List<UUID> users, List<Vector3> CoarseLocations)
607 { 597 {
608 throw new System.NotImplementedException(); 598 throw new System.NotImplementedException();
@@ -618,27 +608,27 @@ namespace OpenSim.Client.Sirikata.ClientStack
618 throw new System.NotImplementedException(); 608 throw new System.NotImplementedException();
619 } 609 }
620 610
621 public void SendPrimitiveToClient(SendPrimitiveData data) 611 public void SendAvatarDataImmediate(ISceneEntity avatar)
622 { 612 {
623 throw new System.NotImplementedException(); 613 throw new System.NotImplementedException();
624 } 614 }
625 615
626 public void SendPrimTerseUpdate(SendPrimitiveTerseData data) 616 public void SendPrimUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags)
627 { 617 {
628 throw new System.NotImplementedException(); 618 throw new System.NotImplementedException();
629 } 619 }
630 620
631 public void ReprioritizeUpdates(StateUpdateTypes type, UpdatePriorityHandler handler) 621 public void ReprioritizeUpdates(UpdatePriorityHandler handler)
632 { 622 {
633 throw new System.NotImplementedException(); 623 throw new System.NotImplementedException();
634 } 624 }
635 625
636 public void SendInventoryFolderDetails(UUID ownerID, UUID folderID, List<InventoryItemBase> items, List<InventoryFolderBase> folders, int version, bool fetchFolders, bool fetchItems) 626 public void FlushPrimUpdates()
637 { 627 {
638 throw new System.NotImplementedException(); 628 throw new System.NotImplementedException();
639 } 629 }
640 630
641 public void FlushPrimUpdates() 631 public void SendInventoryFolderDetails(UUID ownerID, UUID folderID, List<InventoryItemBase> items, List<InventoryFolderBase> folders, int version, bool fetchFolders, bool fetchItems)
642 { 632 {
643 throw new System.NotImplementedException(); 633 throw new System.NotImplementedException();
644 } 634 }