blob: d6217635e18896b8e8cd7ab3dd611618d61022ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
using System;
using System.Collections.Generic;
using System.Text;
using OpenMetaverse;
using OpenMetaverse.Packets;
using OpenSim.Framework;
namespace OpenSim.Tests.Common.Mock
{
public class TestAssetCache : BaseAssetRepository, IAssetCache
{
public void AssetReceived(AssetBase asset, bool IsTexture)
{
throw new NotImplementedException();
}
public void AssetNotFound(UUID assetID, bool IsTexture)
{
throw new NotImplementedException();
}
public void Dispose()
{
throw new NotImplementedException();
}
public string Version
{
get { throw new NotImplementedException(); }
}
public string Name
{
get { throw new NotImplementedException(); }
}
public void Initialise()
{
throw new NotImplementedException();
}
public IAssetServer AssetServer
{
get { throw new NotImplementedException(); }
}
public void Initialise(ConfigSettings cs, IAssetServer server)
{
throw new NotImplementedException();
}
public void ShowState()
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool TryGetCachedAsset(UUID assetID, out AssetBase asset)
{
throw new NotImplementedException();
}
public void GetAsset(UUID assetID, AssetRequestCallback callback, bool isTexture)
{
throw new NotImplementedException();
}
public AssetBase GetAsset(UUID assetID, bool isTexture)
{
return FetchAsset(assetID);
}
public void AddAsset(AssetBase asset)
{
CreateAsset( asset );
}
public void ExpireAsset(UUID assetID)
{
throw new NotImplementedException();
}
public void AddAssetRequest(IClientAPI userInfo, TransferRequestPacket transferRequest)
{
throw new NotImplementedException();
}
}
}
|