The server object functions as the global scope, it holds the various core components, manages plugins and routed and handles incomming requsts
Implementes \OC\Hooks\Emitter
| <?php | |
| if(isset($_GET['run'])){ | |
| $eventSource = new OC_EventSource(); | |
| for($i=0;$i<100;$i++){ | |
| $eventSource->send('tick',$i); | |
| sleep(1); | |
| } | |
| $eventSource->close(); | |
| } |
The storage API consists of 2 seperate (sets of) interfaces:
3 supported storage types
| <?xml version="1.0"?> | |
| <d:searchrequest xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns"> | |
| <d:basicsearch> | |
| <d:select> | |
| <d:prop> | |
| <oc:fileid/> | |
| <d:getcontenttype/> | |
| <d:getetag/> | |
| <oc:size/> | |
| </d:prop> |
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| [CustomEditor(typeof(VRCSDK2.VRC_AvatarDescriptor))] | |
| public class AvatarDescriptorEditor : Editor | |
| { | |
| VRCSDK2.VRC_AvatarDescriptor avatarDescriptor; | |
| VRC.Core.PipelineManager pipelineManager; |